http://pluzz.francetv.fr desktop 1959 false 4000 2500 1000 <p>A high number of DOM elements means a lot of work for the browser to render the page.</p><p>It also slows down JavaScript DOM queries, as there are more elements to search through.</p> phantomas true false 36 0 15 true 28 20 10 <p>A deep DOM makes the CSS matching with DOM elements difficult.</p><p>It also slows down JavaScript modifications to the DOM because changing the dimensions of an element makes the browser re-calculate the dimensions of it's parents. Same thing for JavaScript events, that bubble up to the document root.</p> phantomas 155
  • 7 7 7 2 2 2 1 1
  • 5 5 5 2 2 2 1 1 1 1 1 1 1 1
  • 2 2 2 10 10 10 1 1
  • 1 1 1 9 9 9 1 1
  • 8 8 8 1 1 1
  • true false 50 0
    8 false 30 15 2 <p>iFrames are the most complex HTML elements. They are pages, just like the main page, and the browser needs to create a new page context, which has a cost.</p> phantomas true false 54 0 3 true 50 5 0 <p>IDs of HTML elements must be document-wide unique. This can cause problems with getElementById returning the wrong element.</p> phantomas 3 guide-tranche-1 8 guide-tranche-2 8 guide-tranche-3 8 true false 40 0 2863 false 3000 1500 50 <p>This metric counts the number of calls to DOM related functions (both native DOM functions and jQuery functions) on page load.</p><p>The more your JavaScript code accesses the DOM, the slower the page will load.</p><p>Try, as much as possible, to have an HTML page fully generated by the server instead of making changes with JS.</p><p>Try to reduce the number of queries by refactoring your JavaScript code.</p><p>Binding too many events also has a cost. Try to use <a href="https://learn.jquery.com/events/event-delegation/" target="_blank">event delegation</a> as much as possible.</p> jsExecutionTransformer true false 0 0 195 false 200 100 0 <p>Number of queries that return no result. Both native and jQuery DOM requests are counted.</p><p>It suggests the query is not used on the page, probably because it is some dead code.</p><p>Or maybe the code is trying to find an HTML block that is not always here. Look at the JS Timeline to see if the scripts correctly figures out the HTML block is not here and immediatly stops interacting further with the DOM.</p> jsExecutionTransformer true false 0 0 454 DOMqueriesDuplicated true 500 200 0 <p>This is the number of queries that could be avoided by removing all duplicated queries.</p><p>Simply save the result of a query in a variable. Ok it is not always simple, especially with third-party scripts, but at least do it with your own code.</p> phantomas 35 i domElement div.adCtnt
    1
    getElementsByTagName 90
    b document getElementsByTagName 53 #p document getElementById 46 a domElement div.adCtnt
    1
    getElementsByTagName 45
    o domElement div.adCtnt
    1
    getElementsByTagName 45
    e domElement div.adCtnt
    1
    getElementsByTagName 45
    d domElement div.adCtnt
    1
    getElementsByTagName 45
    s document getElementsByTagName 22 * document getElementsByTagName 15 m document querySelectorAll 9 #f document getElementById 5 #a document getElementById 5 #r document getElementById 5 * domElement div.vad-top-titre
    1
    getElementsByTagName 5
    * domElement div[0]
    1
    getElementsByTagName 5
    #m document getElementById 4 #n document getElementById 4 #g document getElementById 3 * domElement div.metanav 1 getElementsByTagName 3 # document querySelectorAll 3 i document querySelectorAll 3 #c document getElementById 3 #h document getElementById 2 * domElement div#pub-droite
    1
    getElementsByTagName 2
    #l document getElementById 2 * domElement div#menu
    1
    getElementsByTagName 2
    * domElement div.jspContainer
  • 1
  • getElementsByTagName 2
    * domElement div.jspContainer
  • 1
  • getElementsByTagName 2
    * domElement div.jspContainer
  • 1
  • getElementsByTagName 2
    * domElement div.jspContainer
  • 1
  • getElementsByTagName 2
    * domElement ul#ui-id-1
      1
    getElementsByTagName 2
    d domElement div.metanav 1 getElementsByTagName 2 #k document getElementById 2 . document querySelectorAll 2 h document getElementsByTagName 2
    true false 0 0
    1 true 15 7 1 <p>Number of 'scroll' event listeners binded to 'window' or 'document'.</p><p>Asking too much work to the browser on scroll hurts the smoothness of the scroll. Merging all your event listeners into an unique listener can help you factorize their code and reduce their footprint on scroll.</p> phantomas 1 http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js 3 60453 f http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js 3 29885 c http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js 3 94038 e http://pluzz.francetv.fr/ 43 5833 onload window false false 100 0 0 true 35 20 1 <p>This rule counts the number of DOM-accessing functions calls on a scroll event, such as queries, readings, writings, bindings and jQuery functions.</p><p>Two scroll events are triggered quickly, one after the other, and only the second one is analyzed so throttled functions are ignored.</p><p>One of the main reasons of a poor scrolling experience is when too much JS is executed on each scroll event. Note that some devices such as smartphones and MacBooks send more scroll events than others.</p><p>Reduce the number of DOM accesses inside scroll listeners. Put DOM queries outside them when possible. Use <a href="http://blogorama.nerdworks.in/javascriptfunctionthrottlingan/" target="_blank">throttling or debouncing</a>.</p> jsExecutionTransformer main documentScroll 30893 domComplete true windowScroll 30893 domComplete true false false 100 0 0 true 4 1 0 <p>Just to let you know there are some errors on the page.</p><p><b>Please note that some errors only occur in the PhantomJS browser, so you might need to double check on other browsers.</b></p> phantomas 0 false false 100 0 0 true 10 5 0 <p>They slow down the page construction, especially if they are used to insert scripts in the page. Remove them ASAP.</p><p>If you cannot remove them because they come from a third-party script (such as ads), have a look at <a href="https://github.com/krux/postscribe" target="_blank">PostScribe</a>.</p> phantomas 0 false false 100 0 0 true 1 1 0 <p>Making an XMLHttpRequest with the <i>async</i> option set to <i>false</i> is deprecated due to the negative effect to performances. The browser's main thread needs to stop everything until the response is received.</p> phantomas 0 false false 100 0 2 false 50 10 0 <p>Try to keep your console clean when in production. Debugging is good for development only.</p><p>Writing in the console has a cost, especially when dumping large object variables.</p><p>There is also a problem with Internet Explorer 8, not knowing the console object.</p> phantomas true false 80 0 138 true 700 200 40 <p>It is a bad practice because they clutter up the global namespace. If two scripts use the same variable name in the global scope, it can cause conflicts and it is generally hard to debug.</p><p>Global variables also take a (very) little bit longer to be accessed than variables in the local scope of a function.</p> phantomas 138 $ $zoneAbroad AT_click AT_hit AudienceScience CHROMECAST_APPS_ID CHROMECAST_APP_ID CLIENT ChromeCastReceiver EventEmitter Handlebars IMAGES_BASE_URL Krux NREUM OAS_AD OAS_RICH OAS_listpos OAS_sitepage OAS_url PlayerSnapshot Pluzz PluzzCast PluzzDiffusionsStorage RN RNS RSVP RecommandationsHome RubiconAdServing SERVER XMLHttpRequest Xt_id Xtconf Xtcore __IASVANS __nr_require a asiAdserver asiPlacements asiPqTag attag autoCompletePluzz axel callWs customRecommandations data define error form_newsletter_url ftv_metanav ftvenShortTitle ftvi_portail ftvi_rubrique ftvi_section ga gaData gaGlobal gaplugins getTickerTranche iframe inViewport injectScript jQuery lSc lancerRecherche lazyLoadLight lazyload lzld miseEnAvant newrelic o_ passBackPos pluzzBox pluzzMenu ref require rgb2hex rp_account_config rp_onUserIdLoaded_369300_10 rp_onUserIdLoaded_57136_15 rp_onUserIdLoaded_64921_15 rp_onUserIdLoaded_82932_10 rp_requests rp_smartfile rpx_params rubicon_ad rubicon_cb rubicon_creative rubicon_rurl rubicon_tag_code tl_sync tldc wck x xd xt1 xt16 xt21 xt29 xt44 xt7 xt8 xt8b xt9 xtLogDom xt_ParseUrl xt_ParseUrl3 xt_ac xt_ad xt_adc xt_addProduct xt_addProduct_load xt_addProduct_v2 xt_addchain xt_adi xt_an xt_click xt_form xt_med xt_multc xt_mvt xt_rd xt_rm xtdi xtf1 xtf3 xtfirst xtidpg xtn2 xtnv xtp xtpage xtparam xtsd xtsite xttredir xtv xtvid xw true false 39 0 2 true 2 2 1 <p>jQuery is a heavy library. You should <b>never</b> load jQuery more than once on the same page.</p> phantomas 2 v2.1.4 v1.8.3+1 true true 0 0 36 false 180 100 1 <p>This metric counts the number of jQuery functions called on an empty jQuery object. The call was useless.</p><p>This can be helpful to detect dead or unused code.</p> jsExecutionTransformer true false 65 0 30 false 180 100 1 <p>This is the number of events that are bound with the .bind() or the .on() function without using <a href="https://learn.jquery.com/events/event-delegation/" target="_blank">event delegation</a>.</p><p>This means jQuery binds each element contained in the object one by one. This is bad for performance.</p> jsExecutionTransformer true false 71 0 0 true 20 1 0 <p>Yellow Lab Tools failed to parse a CSS file. I doubt the problem comes from the css parser.</p><p>Maybe a <a href="http://jigsaw.w3.org/css-validator" target="_blank">CSS validator</a> can help you.</p> phantomas 0 false false 100 0 1379 true 4500 3000 750 <p>Having a huge number of CSS rules hurts performances. If the number of CSS rules is higher than the number of DOM elements, there is clearly a problem.</p><p>Huge stylesheets generally occur when the different pages of a website load all the CSS, concatenated in a single stylesheet, even if a large part of the rules are page-specific. Solution is to create one main CSS file with global rules and one custom file per page.</p> phantomas 5 http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1064 http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css 17 http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 86 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 106 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 106 true false 72 0 107 true 2000 600 0 <p>Complex selectors are CSS selectors with 4 or more expressions, like "#header ul li .foo".</p><p>They are adding more work for the browser, and this could be avoided by simplifying selectors. The <a href="http://getbem.com" target="_blank">B.E.M. methodology</a> is an useful way to simplify your CSS.</p> phantomas http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 23 #old-browser-popin .browsers>.browser>.logo 4 25577 #old-browser-popin .browsers>.browser>a 4 25679 #old-browser-popin .browsers>.browser>a:hover 4 25799 #old-browser-popin .browsers>.browser>.chrome 4 25871 #old-browser-popin .browsers>.browser>.firefox 4 25999 #old-browser-popin .browsers>.browser>.msie 4 26129 #old-browser-popin .browsers>.browser>.opera 4 26253 #old-browser-popin .browsers>.browser>.safari 4 26379 .retroGuide .guide-vignette:hover .video-description .video-heure 4 38143 .retroGuide .guide-vignette:hover .video-description .video-titre 4 38143 .retroGuide .guide-vignette:hover .video-description .ellipsis-text 4 38286 .bloc-voir-aussi-franceinfo .voiraussi-element .voiraussi-infos .title 4 42105 #diffusion-info .diffusion-paragraphe>span>span 4 44318 .aide-menu .liste>li>a.selected 4 58851 .aide-menu .liste>li>a:hover 4 58851 .aide-menu .liste>li>a 4 59005 .bloc-color .box-collapse>li>div.box-title 4 60216 .bloc-color .box-collapse>li>div.box-title:before 4 60317 .bloc-color .box-collapse>li li 4 61011 .annexe-plus-regardes a:hover .vignette-plusregardes .vignette-filtre 4 62865 .annexe-plus-regardes a:hover .vignette-plusregardes .sprite-play.vignette-play 4 62948 #accessibilite-inner .keyboard>div span 4 66261 #accessibilite-inner .keyboard>div span:last-of-type 4 66415 http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 2 #footer-transverse #ft-top-link li.ft-applications a 1 5580 #footer-transverse #ft-top-link li#ft-applications a 1 5664 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 82 .metanav .chaines li a 1 1973 .metanav .chaines li.la1ere a 1 2085 .metanav .chaines li.france2 a 1 2147 .metanav .chaines li.france3 a 1 2211 .metanav .chaines li.france4 a 1 2275 .metanav .chaines li.france5 a 1 2339 .metanav .chaines li.franceo a 1 2403 .metanav .chaines li.current a 1 2468 .metanav .chaines li a:hover 1 2468 .metanav .chaines li.la1ere.current a 1 2586 .metanav .chaines li.la1ere a:hover 1 2586 .metanav .chaines li.france2.current a 1 2692 .metanav .chaines li.france2 a:hover 1 2692 .metanav .chaines li.france3.current a 1 2801 .metanav .chaines li.france3 a:hover 1 2801 .metanav .chaines li.france4.current a 1 2910 .metanav .chaines li.france4 a:hover 1 2910 .metanav .chaines li.france5.current a 1 3019 .metanav .chaines li.france5 a:hover 1 3019 .metanav .chaines li.franceo.current a 1 3128 .metanav .chaines li.franceo a:hover 1 3128 .metanav .pluzz .content li 1 4032 .metanav .info .content li 1 4032 .metanav .pluzz .content li:hover 1 4098 .metanav .info .content li:hover 1 4098 .metanav .pluzz .content a 1 4188 .metanav .pluzz .content a:hover 1 4326 .metanav .info .content a:hover 1 4326 .metanav .transverse li.pluzz a:hover 1 4419 .metanav .info .content a 1 5085 .metanav .transverse li.sport a 1 5222 .metanav .transverse li.sport.current a 1 5348 .metanav .transverse li.sport a:hover 1 5348 .metanav .content #KitSso_loginLink a 1 7124 .metanav ul.sso_link_list li:hover a 1 7627 .metanav .newsletter a span 1 8285 .metanav .newsletter a:hover span 1 8354 .metanav .confidentialite.newsletter_link.sso_connect a:hover span 1 9302 .metanav .confidentialite.newsletter_link.sso_disconnect a:hover span 1 9302 .metanav .confidentialite a span 1 9450 .metanav .confidentialite a:hover span 1 9509 .metanav .chaines li a 1 1973 .metanav .chaines li.la1ere a 1 2085 .metanav .chaines li.france2 a 1 2147 .metanav .chaines li.france3 a 1 2211 .metanav .chaines li.france4 a 1 2275 .metanav .chaines li.france5 a 1 2339 .metanav .chaines li.franceo a 1 2403 .metanav .chaines li.current a 1 2468 .metanav .chaines li a:hover 1 2468 .metanav .chaines li.la1ere.current a 1 2586 .metanav .chaines li.la1ere a:hover 1 2586 .metanav .chaines li.france2.current a 1 2692 .metanav .chaines li.france2 a:hover 1 2692 .metanav .chaines li.france3.current a 1 2801 .metanav .chaines li.france3 a:hover 1 2801 .metanav .chaines li.france4.current a 1 2910 .metanav .chaines li.france4 a:hover 1 2910 .metanav .chaines li.france5.current a 1 3019 .metanav .chaines li.france5 a:hover 1 3019 .metanav .chaines li.franceo.current a 1 3128 .metanav .chaines li.franceo a:hover 1 3128 .metanav .pluzz .content li 1 4032 .metanav .info .content li 1 4032 .metanav .pluzz .content li:hover 1 4098 .metanav .info .content li:hover 1 4098 .metanav .pluzz .content a 1 4188 .metanav .pluzz .content a:hover 1 4326 .metanav .info .content a:hover 1 4326 .metanav .transverse li.pluzz a:hover 1 4419 .metanav .info .content a 1 5085 .metanav .transverse li.sport a 1 5222 .metanav .transverse li.sport.current a 1 5348 .metanav .transverse li.sport a:hover 1 5348 .metanav .content #KitSso_loginLink a 1 7124 .metanav ul.sso_link_list li:hover a 1 7627 .metanav .newsletter a span 1 8285 .metanav .newsletter a:hover span 1 8354 .metanav .confidentialite.newsletter_link.sso_connect a:hover span 1 9302 .metanav .confidentialite.newsletter_link.sso_disconnect a:hover span 1 9302 .metanav .confidentialite a span 1 9450 .metanav .confidentialite a:hover span 1 9509 true false 82 0 73 true 400 150 30 <p>This is the number of different colors defined in CSS.</p><p>Your CSS will be easier to maintain if you keep a small color set.</p> phantomas 73 #ffffff 108 #000000 64 #262626 37 #7a7a7a 29 #c4c4c4 19 #333333 17 #323131 16 #515151 15 #0076b9 14 #eaeaea 12 #1d1d1d 11 #404040 10 #636363 9 #111111 8 #555555 8 #d9d9d9 8 rgba(0,0,0,0.2) 8 #f87c00 7 #97488a 7 #f5c22f 7 #e80000 7 #87c000 7 rgba(50,49,49,0.54) 6 rgba(50,49,49,0.81) 6 rgba(50,49,49,0.25) 6 rgba(50,49,49,0.13) 6 #cccccc 6 #cfcfcf 3 rgba(0,0,0,0.3) 3 rgba(50,49,49,0.91) 3 #e5eb7c 3 rgba(50,49,49,0) 3 rgba(50,49,49,0.03) 3 rgba(50,49,49,0.94) 3 rgba(50,49,49,0.96) 3 #a0a0a0 3 #434343 2 rgba(0,0,0,0.5) 2 #2a2a2a 2 rgba(255,255,255,0.7) 2 rgba(0,0,0,0.7) 2 #fbbebd 2 #f76b68 2 #f7f7f7 2 #888888 2 #3a3a3a 2 rgba(0,0,0,0.8) 2 #acacac 2 #454646 2 #c7111d 2 rgba(255,255,255,0.3) 1 #bbbbdd 1 rgba(255,255,255,0.32) 1 #ffc300 1 #213231 1 rgba(255,255,255,0.16) 1 #6d6d68 1 #999999 1 #7b7b7b 1 #666666 1 #e6e6e6 1 rgba(85,85,85,0.7) 1 #bbbbbb 1 #555454 1 #eeeef4 1 rgba(0,0,0,0.15) 1 #454545 1 #cecdcd 1 #50506d 1 #003231 1 #80808d 1 #ddddee 1 #898989 1 true false 64 0 10 true 80 40 0 <p>This is the list of colors found in the stylesheets, that are very close to each other. The eye can barely see the difference.</p><p>Use this list to reduce the number of colors in your palette, it will be easier to maintain.</p> colorDiff 10 #7a7a7a #7b7b7b true #323131 #333333 true #eaeaea #e6e6e6 false #cccccc #cfcfcf false #cccccc #cecdcd false #cfcfcf #cecdcd false #898989 #888888 true #555454 #555555 true #454646 #454545 true #454545 #434343 true true false 75 0 3 true 60 40 6 <p>This is the number of different breakpoints found in the stylesheets' media queries.</p><p>Please note this rule is based on <i>min-width</i>, <i>max-width</i>, <i>min-device-width</i> and <i>max-device-width</i> media queries only.</p><p>Your CSS will be easier to maintain if you keep a reasonable number of breakpoints. Try to make a fluid design - using percents - to avoid the creation of numerous breakpoints.</p> mediaQueriesChecker 860px 1 860 1024px 1 1024 980px 2 980 false false 100 0 5 true 1000 200 25 <p>This is the number of CSS rules inside media queries that address small screens.</p><p>The common good practice, when creating a responsive website, is to write it "mobile-first". More explanation in <a href="http://www.sitepoint.com/introduction-mobile-first-media-queries" target="_blank">this great article</a>.</p> mediaQueriesChecker http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 2 screen and (max-width:860px) 2 1 3443 only screen and (max-width:1024px) 1 4 6505 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 2 screen and (max-width:980px) 1 1 506 screen and (max-width:980px) 1 1 506 false false 100 0 0 true 1 1 0 <p>It’s bad for performance to use @import because CSS files don't get downloaded in parallel.</p><p>You should use &lt;link rel='stylesheet' href='a.css'&gt; instead.</p> phantomas 0 false false 100 0 24 true 100 50 0 <p>This is when two or more selectors are strictly identical and should be merged.</p> phantomas 24 .selectboxit-arrow-container 2 #regions_DT div.region 2 .flex-control-nav 2 .flex-control-nav li 2 .flex-control-paging li a 2 .flex-control-paging li a.flex-active 2 .ui-menu 2 .ui-menu .ui-menu-item 2 .jspDrag 2 .selectboxit-container * 2 .selectboxit-container .selectboxit-options a, .selectboxit-container span 2 .selectboxit-container .selectboxit-options 2 .flexslider 2 .selectboxit .selectboxit-arrow-container .selectboxit-arrow 2 .selectboxit-btn 2 .selectboxit-btn.selectboxit-enabled:focus, .selectboxit-btn.selectboxit-enabled:hover 2 .selectboxit-list>.selectboxit-focus>.selectboxit-option-anchor 2 #enReplay 2 #cboxOverlay 2 #cboxContent 2 #cboxLoadedContent 2 #cboxTitle 2 #cboxClose, #cboxNext, #cboxPrevious, #cboxSlideshow 2 #cboxClose 2 true false 52 0 4 true 120 60 0 <p>This is the number of property definitions duplicated within a selector.</p> phantomas http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 background .flex-control-paging li a 1 2803 border .selectboxit-list 4 5954 background #onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after 4 16238 width .sprite-play-regions 4 85469 true false 93 0 0 true 100 50 0 <p>Very easy to fix: remove all empty rules.</p> phantomas false false 100 0 0 true 20 1 0 <p>Such as: expression( document.body.clientWidth > 600 ? "600px" : "auto" )</p><p>This is a bad practice as it slows down browsers. There are some simpler CSS3 methods for doing this.</p> phantomas false false 100 0 27 true 200 75 0 <p>It can be useful, but only as a last resort. It is a bad practice because it overrides the normal cascading logic. The more you use !important, the more you need it again to over-override. This conducts to a poor maintainability.</p> phantomas http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 16 .flex-direction-nav .flex-disabled opacity 0 1 2105 .ui-state-disabled cursor default 4 681 .selectboxit-rendering display inline-block 4 5139 .selectboxit-rendering zoom 1 4 5170 .selectboxit-rendering visibility visible 4 5187 .selectboxit-rendering position absolute 4 5216 .selectboxit-rendering top -9999px 4 5244 .selectboxit-rendering left -9999px 4 5266 #combo-replaySelectBoxIt width 119px 4 11028 #cboxCurrent display none 4 27636 .fb_iframe_widget>span vertical-align top 4 40991 .boutonGooglePlus, .boutonGooglePlus>iframe width 68px 4 41063 #player-onEnAParle .loupe left 391px 4 46189 #combo-nb-elementsSelectBoxIt width 80px 4 47460 #combo-nb-elementsSelectBoxItArrowContainer width 40px 4 47836 .formInput input[type=text], .formInput option, .formInput select, .formInput textarea font-weight 700 4 68643 http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css 5 body position initial 1 6 .relativeBody .metanav top 0 1 56 .metanav.cnil top 53px 1 86 .html-cnil padding-top 84px 1 116 .html-cnil-mobile padding-top 84px 1 878 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 6 html padding-top 31px 1 6 #captureSignInLink padding 0 0 0 30px 1 6533 .sso_link_list li a background none 1 7458 html padding-top 31px 1 6 #captureSignInLink padding 0 0 0 30px 1 6533 .sso_link_list li a background none 1 7458 true false 64 0 3 true 300 75 0 <p>What browser do you need to support? Once you've got the answer, take a look at these old rules that pollute your CSS code and remove them.</p><p>IE6:<ul><li>* html</li><li>html > body (everything but IE6)</li></ul><p><p>IE7:<ul><li><b>*</b>height: 123px;</li><li>height: 123px <b>!ie</b>;</li></ul><p><p>IE9:<ul><li>-ms-filter</li><li>progid:DXImageTransform.Microsoft</li></ul></p> phantomas http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 3 * html .slides 1 837 <b>* html</b> .slides IE6 * html .jspCorner 4 2700 <b>* html</b> .jspCorner IE6 #onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21323131', endColorstr='#00323131', GradientType=0)} 4 16571 #onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {filter: <b>progid:DXImageTransform.Microsoft</b>.gradient(startColorstr='#21323131', endColorstr='#00323131', GradientType=0)} IE9 true false 96 0 39 true 300 75 0 <p>Many property prefixes such as -moz- or -webkit- are not needed anymore, or by very few people. Sometimes, they have never even existed. You can remove them or replace them with the non-prefixed version. This will help reducing your stylesheets weight.</p><p>The prefixes database comes from <a href="http://caniuse.com/" target="_blank">Can I Use</a>.</p> phantomas 39 -webkit-border-radius was required by Android Browser 2.1, Chrome 4, iOS Safari 3.2, Safari 4 and earlier .flexslider 4px http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 990 .flex-control-paging li a 20px http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 2864 -moz-border-radius was required by Firefox 3.6 and earlier .flexslider 4px http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 1016 .flex-control-paging li a 20px http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 2891 -o-border-radius prefix is no longer supported .flexslider 4px http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 1039 .flex-control-paging li a 20px http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 2915 -moz-box-shadow was required by Firefox 3.6 and earlier .flexslider 0 1px 4px rgba(0,0,0,.2) http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 1122 .flex-control-paging li a inset 0 0 3px rgba(0,0,0,.3) http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 3004 .selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled none http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 3466 .selectboxit-container .selectboxit-options none http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 3951 .selectboxit-list 0 5px 10px rgba(0,0,0,.2) http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 6031 -o-box-shadow prefix is no longer supported .flexslider 0 1px 4px rgba(0,0,0,.2) http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 1163 .flex-control-paging li a inset 0 0 3px rgba(0,0,0,.3) http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 3049 -moz-transition was required by Firefox 15 and earlier .flex-viewport all 1s ease http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 1309 .flex-direction-nav a all .3s ease http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 1734 -o-transition prefix is no longer supported .flex-viewport all 1s ease http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 1337 -webkit-box-shadow was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier .flex-control-paging li a inset 0 0 3px rgba(0,0,0,.3) http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 1 2956 .selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled none http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 3442 .selectboxit-container .selectboxit-options none http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 3927 .selectboxit-list 0 5px 10px rgba(0,0,0,.2) http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 5986 -o-user-select prefix is no longer supported .selectboxit-container * none http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 2992 -moz-box-sizing was required by Firefox 28 and earlier .selectboxit-container .selectboxit-options border-box http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 4 3710 #footer-transverse #ft-body-container div, #footer-transverse ul content-box http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 1 423 #footer-transverse #ft-body-container content-box http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 1 6154 .block.plus .content, .metanav .content #KitSso_loginLink a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 7214 .metanav .newsletter a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 8160 .metanav .confidentialite a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 9172 .block.plus .content, .metanav .content #KitSso_loginLink a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 7214 .metanav .newsletter a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 8160 .metanav .confidentialite a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 9172 -webkit-box-sizing was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier #footer-transverse #ft-body-container div, #footer-transverse ul content-box http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 1 392 #footer-transverse #ft-body-container content-box http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 1 6123 .block.plus .content, .metanav .content #KitSso_loginLink a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 7183 .metanav .newsletter a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 8129 .metanav .confidentialite a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 9141 .block.plus .content, .metanav .content #KitSso_loginLink a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 7183 .metanav .newsletter a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 8129 .metanav .confidentialite a content-box http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1 9141 true false 48 0 0 true 200 60 0 <p>This is one way to remove complexity from a CSS rule. Generally, when "body" is specified in a rule it can be removed, because an element is necessarily inside the body.</p> phantomas false false 100 0 4 true 200 60 0 <p>Some tags included inside other tags are obvious. For example, when "ul li" is specified in a rule, "ul" can be removed because the "li" tag is nearly always inside an "ul" container (the "ol" container is quite rare). Same thing for "tr td", "select option", ...</p><p>Lowering compexity in CSS selectors can make the page load a little faster.</p> phantomas http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 4 .metanav ul.sso_link_list li:hover 1 7581 .metanav <b>ul</b>.sso_link_list <b>li</b>:hover .metanav ul.sso_link_list li:hover a 1 7627 .metanav <b>ul</b>.sso_link_list <b>li</b>:hover a .metanav ul.sso_link_list li:hover 1 7581 .metanav <b>ul</b>.sso_link_list <b>li</b>:hover .metanav ul.sso_link_list li:hover a 1 7627 .metanav <b>ul</b>.sso_link_list <b>li</b>:hover a true false 93 0 905000 bytes true 3145728 2097152 716800 <p>The weight is of course very important if you want the page to load fast. Try to stay under 1MB, which is alreay very long to download over a slow connection.</p><p>Please note that Yellow Lab Tools' engine (PhantomJS) is not compatible with image srcset (unless you use a polyfill). This can lead to incorrect page weight.</p> redownload 905000 54212 http://pluzz.francetv.fr/ 24703 http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? 820 http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp= 1272 https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? 873 http://ad2play.ftv-publicite.fr/sticky.ads? 417 http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph 2056 http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph 24071 25627 http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css 18362 http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 1885 http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css 940 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 2220 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 2220 463675 http://pluzz.francetv.fr/js/jquery-2.1.4.min.js 29884 http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js 30746 http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js 4137 http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js 25849 http://static.francetv.fr/js/jquery.metanav-min.js?20161007 3128 http://static.francetv.fr/pom/audience/audience.min.js 2954 http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js 1273 http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js 8008 http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js 1224 http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js 1721 http://www.google-analytics.com/analytics.js 11954 http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus 1999 http://static.francetv.fr/pom/publicite/publicite.min.js 7684 http://cdn.tradelab.fr/tag/59763bfbc2.js 5022 http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp 2162 http://cdn.krxd.net/controltag?confid=J1mXKWTY 4084 http://cdn.tradelab.fr/seg.js?add=494671 1517 http://cdn.tradelab.fr/seg.js?add=577824 1517 http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 731 http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js 185349 http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 71683 http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste 20612 http://cdn.krxd.net/controltag/J1mXKWTY.js 4084 http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n 6628 http://ads.rubiconproject.com/ad/9585.js 7381 https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 1052 http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync 766 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 298 http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 2082 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 297 http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 2090 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 297 http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 2103 http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata 719 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 297 http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 1553 http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck 585 http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM 862 https://js-agent.newrelic.com/nr-998.min.js 9343 0 295958 http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png 20336 http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png 6033 http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png 2715 http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png 24333 http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png 4144 http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png 2557 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg 14811 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845512/1482930316/200/0/france3/0/img.jpg 6259 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482930305/200/0/france2/0/img.jpg 7880 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg 26035 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg 11703 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887923/1482930325/200/0/france4/0/img.jpg 7456 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/151874972/1482923144/200/0/franceo/0/img.jpg 5813 http://static.francetv.fr/img/metanav/sprite-v1.8.28.png 13696 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg 13180 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833042/1482930333/200/0/france5/0/img.jpg 7306 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg 29230 https://www.facebook.com/tr?id=882125681855230&ev=PageView 455 http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 373 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg 5615 http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw 43 http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On 308 http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg 39204 https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 491 http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y 343 http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 783 http://cdn.oas-eu1.adnxs.com/0/default/empty.gif 778 http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 849 http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 882 http://ib.adnxs.com/seg?add=2491894:59&t=2 783 http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 783 http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 589 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 751 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 751 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 751 http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n 615 http://pixel.rubiconproject.com/tap.php 313 http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg 33551 http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 310 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w 310 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w 309 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w 309 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w 309 http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 313 http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 313 http://rc.d.chango.com/m/rc 35 http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 313 http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e 313 http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 313 http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 313 21546 http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff 21546 43982 http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20 43982 true false 86 0 5861 bytes true 307200 122880 10240 <p>This metric measures the number of bytes that could be saved by optimizing images.</p><p>Image optimization is generally one of the easiest way to reduce a page weight, and as a result, the page load time. Don't use Photoshop or other image editing tools, they're not very good for optimization. Use specialized tools such as <a href="https://kraken.io/" target="_blank">Kraken.io</a> or the excellent <a href="https://imageoptim.com/" target="_blank">ImageOptim</a> on Mac. For SVG images, you can use <a href="https://jakearchibald.github.io/svgomg/" target="_blank">SVGOMG</a></p><p>The tools in use in YellowLabTools are not set to their maximum optimization power (JPEG quality 85), so you might be able to compress even more!</p><p>Please note that Yellow Lab Tools' engine (PhantomJS) is not compatible with image srcset (unless you use a polyfill). This can lead to incorrect page weight.</p> redownload 5861 http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png 2416 false 1084 1332 http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png 2259 false 1335 924 http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg 33274 false 29669 3605 false false 100 0 10301 bytes true 153600 81920 5125 <p>Measures the number of bytes that could be saved by compressing file transfers.</p><p>Gzip is a powerfull weight reducer and should be enabled on text-based assets in your server's configuration. Note that gzipping small files (< 1 KB) is arguable, and that some assets such as images should not be gzipped as they are already compressed. <a href="https://gist.github.com/gmetais/971ce13a1fbeebd88445" target="_blank">Here</a> is a list of Content-Types that should be gzipped.</p> redownload 10301 http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus 1720 533 1187 http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp 1883 751 1132 http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n 6039 1358 4681 http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 1712 809 903 http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 1720 812 908 http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 1732 846 886 http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 1182 578 604 true false 93 0 0 bytes true 122880 61440 5125 <p>This is the weight that could be saved if all text resources were correctly minified.</p><p>The tools in use here are <b>UglifyJS</b>, <b>clean-css</b> and <b>HTMLMinifier</b>. These tools are so good that some of your minified files can be marked as unminified. Change your tool it this happens :)</p><p>The gains of minification are generally small, but the impact can be high when these text files are loaded on the critical path.</p> redownload 0 false false 100 0 143 true 180 100 15 <p>This is one of the most important performance rule. Every request is slowing down the page loading.</p><p>There are several technics to reduce their number:<ul><li>Concatenate JS files</li><li>Concatenate CSS files</li><li>Embed or inline small JS or CSS files in the HTML</li><li>Create sprites</li><li>Base64 encode small images in HTML or stylesheets</li><li>Use lazyloading for images</li></ul></p> redownload 143 http://pluzz.francetv.fr/ http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=1668680996&cid=993101290.1482938593&tid=UA-12822736-1&_r=1&z=1712793791 http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp= http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? http://ib.adnxs.com/seg?add=577824&t=2 http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync http://ib.adnxs.com/seg?add=494671&t=2 http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm http://ad2play.ftv-publicite.fr/sticky.ads? http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D109108%26nid%3D3876%26put%3D$UID%26expires%3D30 http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 http://match.adsrvr.org/track/cmf/rubicon http://match.adsrvr.org/track/cmb/rubicon? http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css http://static.francetv.fr/css/metanav/default-min-v1.8.39.css http://static.francetv.fr/css/metanav/default-min-v1.8.39.css http://pluzz.francetv.fr/js/jquery-2.1.4.min.js http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js http://static.francetv.fr/js/jquery.metanav-min.js?20161007 http://static.francetv.fr/pom/audience/audience.min.js http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js http://www.google-analytics.com/analytics.js http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus http://static.francetv.fr/pom/publicite/publicite.min.js http://cdn.tradelab.fr/tag/59763bfbc2.js http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp http://cdn.krxd.net/controltag?confid=J1mXKWTY http://cdn.tradelab.fr/seg.js?add=494671 http://cdn.tradelab.fr/seg.js?add=577824 http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste http://cdn.krxd.net/controltag/J1mXKWTY.js http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n http://ads.rubiconproject.com/ad/9585.js https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM https://js-agent.newrelic.com/nr-998.min.js http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845512/1482930316/200/0/france3/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482930305/200/0/france2/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887923/1482930325/200/0/france4/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/151874972/1482923144/200/0/franceo/0/img.jpg http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 http://static.francetv.fr/img/metanav/sprite-v1.8.28.png http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833042/1482930333/200/0/france5/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg https://www.facebook.com/tr?id=882125681855230&ev=PageView http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 http://cdn.oas-eu1.adnxs.com/0/default/empty.gif http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 http://ib.adnxs.com/seg?add=2491894:59&t=2 http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 http://beacon.krxd.net/pixel.gif?source=smarttag&fired=user_data_timeout&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=1864&t_content_ready=7058&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=false&store_user_after=rej6fgpic&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2CNaN http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D http://pixel.rubiconproject.com/tap.php http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w http://sync.mathtag.com/sync/img?mt_exid=9 http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 http://rc.d.chango.com/m/rc http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 true false 0 0 46 true 50 25 10 <p>For each domain met, the browser needs to make a DNS look-up, which is slow. Avoid having to many different domains and the page should render faster.</p><p>By the way, domain sharding is not a good practice anymore.</p> phantomas 46 ib.adnxs.com 14 refonte.webservices.francetelevisions.fr 11 pluzz.francetv.fr 10 newsletters.francetv.fr 9 ads.stickyadstv.com 9 static.francetv.fr 7 its.tradelab.fr 7 pixel.rubiconproject.com 7 cdn.krxd.net 5 gum.criteo.com 4 optimized-by.rubiconproject.com 4 dt.adsafeprotected.com 4 www.google-analytics.com 3 cdn.tradelab.fr 3 pub.ftv-publicite.fr 3 cm.g.doubleclick.net 3 api.lereferentiel.francetv.fr 2 logc238.xiti.com 2 pix04.revsci.net 2 beacon.krxd.net 2 sync.mathtag.com 2 tap2-cdn.rubiconproject.com 2 pixel.adsafeprotected.com 2 token.rubiconproject.com 2 match.adsrvr.org 2 rub.pxl.ace.advertising.com 2 googleads.g.doubleclick.net 1 www.facebook.com 1 pq-direct.revsci.net 1 staticftv-a.akamaihd.net 1 www.francetvinfo.fr 1 4610658.fls.doubleclick.net 1 stats.g.doubleclick.net 1 5110145.fls.doubleclick.net 1 pluzz.webservices.francetelevisions.fr 1 www.google.com.ph 1 ads.rubiconproject.com 1 cdn.oas-eu1.adnxs.com 1 lpm-francetv.nuggad.net 1 ad2play.ftv-publicite.fr 1 rtd.tubemogul.com 1 sync.adaptv.advertising.com 1 tap.rubiconproject.com 1 boa-pluzz.francetelevisions.fr 1 js-agent.newrelic.com 1 rc.d.chango.com 1 true false 0 0 0 true 1 1 0 <p>404 errors are never cached, so each time a page ask for it, it hits the server. Even if it is behind a CDN or a reverse-proxy cache.</p> phantomas 0 false false 100 0 2 true 20 7 0 <p>This counts the number of requests not keeping the connection alive (specifying "Connection: close" in the response headers). It is only counting a request if it is followed by another request on the same domain.</p><p>This is slowing down the next request, because the brower needs to open a new connection to the server, which means an additional round-trip.</p><p>Correct the problem by setting a Keep-Alive header on the guilty server.</p> phantomas 2 http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref= http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20 true false 71 0 3 true 15 5 0 <p>This is the number of requests that could be avoided, because of downloaded files that have the same content but are loaded from different URLs.</p><p>Try to load them from the same URL.</p> redownload 3 3 3287 http://cdn.krxd.net/controltag?confid=J1mXKWTY http://cdn.krxd.net/controltag/J1mXKWTY.js 1148 http://cdn.tradelab.fr/seg.js?add=494671 http://cdn.tradelab.fr/seg.js?add=577824 177 http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? true false 40 0 0 true 5 1 0 <p>List of GET requests that respond with an empty body. These are probably the easiest requests to remove.</p> redownload 0 false false 100 0 53 true 50 30 4 <p>List of all requests that are less than 2 KB. Try to merge them with other files.</p> redownload 53 http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css 1537 http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css 594 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1828 http://static.francetv.fr/css/metanav/default-min-v1.8.39.css 1828 http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js 914 http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js 866 http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js 1360 http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus 1720 http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp 1883 http://cdn.tradelab.fr/seg.js?add=494671 1148 http://cdn.tradelab.fr/seg.js?add=577824 1148 http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 159 https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 384 http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync 53 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 62 http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 1712 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 61 http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 1720 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 61 http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 1732 http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata 169 http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 61 http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 1182 http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck 70 http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM 274 https://www.facebook.com/tr?id=882125681855230&ev=PageView 44 http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 35 http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On 43 https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 35 http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y 42 http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 43 http://cdn.oas-eu1.adnxs.com/0/default/empty.gif 43 http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 43 http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 43 http://ib.adnxs.com/seg?add=2491894:59&t=2 43 http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 43 http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 43 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 43 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 43 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 43 http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n 43 http://pixel.rubiconproject.com/tap.php 42 http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 43 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w 43 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w 43 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w 43 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w 43 http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 42 http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 42 http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 42 http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e 42 http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 42 http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 42 true true 0 -7 6 true 30 12 1 <p>This is the number of images displayed below the fold that could be lazy-loaded. This is an excellent way to accelerate the loading time of an heavy page.</p><p>I recommend using <a href="https://github.com/vvo/lazyload" target="_blank">this lazyloader</a>.</p> phantomas 6 http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg true false 55 0 0 true 30 12 1 <p>List of all images that have a display:none property, or one of their parents. These images are loaded by the browser even if they're not visible. You might be able to find a way to lazy-load them, only when they get visible.</p><p>As images displayed in 1x1 pixels tend to be trackers, they are excluded from this rule.</p> phantomas 0 false false 100 0 1 true 7 5 1 <p>This is the number of custom web fonts loaded on the page.</p><p>Webfonts are beautiful, but heavy. You should keep their number as low as possible.</p> redownload 1 http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff 21240 false false 100 0 0 true bytes 204800 102400 0 <p>This metric is the sum of all bytes above 40KB in loaded fonts. Over this size, the font is probably not optimized for the web.</p><p>It can be a compresson issue, a font that contains too many glyphs or a font with complex shapes.</p><p>Sorry, Yellow Lab Tools is not yet compatible with the WOFF2 font format that generates 20-30% smaller fonts. You can proceed to a manual verification on a modern browser.</p> redownload 0 http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff 21240 220 23.9 0 false false 100 0 0 true 12 8 0 <p>This metric counts the number of unused Unicode ranges inside each font. For example, one font could include Cyrillic glyphs but none of them are used on the page.</p><p>Because of technical limitations, Yellow Lab Tools checks each font against the glyphs of the entire page. As a result, estimated use is >= to reality. For example, if you read that 10 glyphs are "possibly used", it means that these 10 glyphs are used on the page but nothing guaranties that they are displayed using this font.</p><p>Tools such as <a href="https://www.fontsquirrel.com/tools/webfont-generator" target="_blank">Font Squirrel</a> can remove some unicode ranges from a font.</p><p>In the case of an icon font, make sure you only keep the icons that are used on the website and to remove the others. Several tools are able to extract SVG images from a font, then some other tools can generate a font from the SVGs you want to keep.</p> redownload 0 http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff 21240 false Basic Latin 32 127 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ 72 0.9895833333333334 Latin-1 Supplement 160 255  ¡¢£¤¥¦§¨©ª«¬­®¯°±´µ¶·¸º»¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÑÒÓÔÕÖרÙÚÛÜßàáâãäåæçèéêëìíîïñòóôõö÷øùúûüÿ 14 0.875 Latin Extended 256 591 ŒœŸ 0 0.008928571428571428 Others ˆ˜           ‐‑‒–—‘’‚“”„•… ‹› €™◼fifl 2 false false 100 0 No 0 true false 0 <p>HTTP/2 is the latest version of the HTTP protocol and is designed to optimize load speed. SPDY is deprecated but still very well supported.</p><p>The latest versions of all major browsers are now compatible. The difficulty is on the server side, where technologies are not quite ready yet.</p> 32 true 25 12 0 <p>Counts responses with caching disabled (max-age=0)</p><p>Fix immediatly if on static assets.</p> phantomas 32 http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 https://www.facebook.com/tr?id=882125681855230&ev=PageView http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync http://ib.adnxs.com/seg?add=2491894:59&t=2 http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D http://pixel.rubiconproject.com/tap.php http://sync.mathtag.com/sync/img?mt_exid=9 http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 http://rc.d.chango.com/m/rc http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 true true 0 -28 11 true 40 20 5 <p>When no caching is specified, each browser will handle it differently. Most of the time, it will automatically add a cache for you, but a poor one. You'd better handle it yourself.</p> phantomas 11 http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 http://beacon.krxd.net/pixel.gif?source=smarttag&fired=user_data_timeout&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=1864&t_content_ready=7058&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=false&store_user_after=rej6fgpic&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2CNaN http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w true false 60 0 23 true 40 20 5 <p>Responses with too short caching time (less than a week).</p><p>The longer you cache, the better. Add versionning to your static assets, if it's not already done, and set their cache time to one year.</p> phantomas 23 http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste 218 4 minutes http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus 284 5 minutes http://cdn.tradelab.fr/seg.js?add=577824 300 5 minutes http://cdn.tradelab.fr/tag/59763bfbc2.js 300 5 minutes http://cdn.tradelab.fr/seg.js?add=494671 300 5 minutes http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp 463 8 minutes http://cdn.krxd.net/controltag?confid=J1mXKWTY 1200 20 minutes http://cdn.krxd.net/controltag/J1mXKWTY.js 1200 20 minutes http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata 1800 30 minutes http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 3598 3 days http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 3599 3 days http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 3599 3 days http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 3599 3 days https://js-agent.newrelic.com/nr-998.min.js 3600 3 days http://ads.rubiconproject.com/ad/9585.js 4711 3 days http://www.google-analytics.com/analytics.js 7200 2 hours http://static.francetv.fr/img/metanav/sprite-v1.8.28.png 20741 6 hours http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png 86400 24 hours http://cdn.oas-eu1.adnxs.com/0/default/empty.gif 86400 24 hours http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png 86400 24 hours http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png 86400 24 hours http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png 86400 24 hours http://static.francetv.fr/js/jquery.metanav-min.js?20161007 583679 7 days true false 0 0
    92 totalWeight imageOptimization gzipCompression fileMinification 44 totalRequests domains notFound identicalFiles emptyRequests smallRequests lazyLoadableImagesBelowTheFold hiddenImages 42 DOMelementsCount DOMelementMaxDepth iframesCount DOMidDuplicated 0 DOMaccesses queriesWithoutResults DOMqueriesAvoidable 100 eventsScrollBound DOMaccessesOnScroll 96 jsErrors documentWriteCalls synchronousXHR consoleMessages globalVariables 34 jQueryVersion jQueryVersionsLoaded jQueryCallsOnEmptyObject jQueryNotDelegatedEvents 81 cssRules cssComplexSelectors cssColors similarColors cssBreakpoints cssMobileFirst 86 cssParsingErrors cssImports cssDuplicatedSelectors cssDuplicatedProperties cssEmptyRules cssExpressions cssImportants cssOldIEFixes cssOldPropertyPrefixes cssRedundantBodySelectors cssRedundantChildNodesSelectors 100 fontsCount heavyFonts unusedUnicodeRanges 21 http2 closedConnections cachingNotSpecified cachingDisabled cachingTooShort 61