Runtime Environment

  • Device Emulation (Nexus 5X): Enabled

  • Network Throttling (150ms RTT, 1.6Mbps down, 0.7Mbps up): Enabled

  • CPU Throttling (5x slowdown): Disabled

Progressive Web App

These audits validate the aspects of a Progressive Web App. They are a subset of the PWA Checklist.

37 / 100

App can load on offline/flaky connections

Ensuring your web app can respond when the network connection is unavailable or flaky is critical to providing your users a good experience. This is achieved through use of a Service Worker.

  • Registers a Service Worker The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. Learn more.

    Fail
  • Responds with a 200 when offline If you're building a Progressive Web App, consider using a service worker so that your app can work offline. Learn more.

    Fail

Page load performance is fast

Users notice if sites and apps don't perform well. These top-level metrics capture the most important perceived performance concerns.

  • First meaningful paint: 1332.2ms (target: 1,600ms) First meaningful paint measures when the primary content of a page is visible. Learn more.

    98
  • Perceptual Speed Index: 1507 (target: 1,250) Speed Index shows how quickly the contents of a page are visibly populated. Learn more.

    97
    • First Visual Change: 1506ms
    • Last Visual Change: 1570ms
  • Estimated Input Latency: 16ms (target: 50ms) The score above is an estimate of how long your app takes to respond to user input, in milliseconds. There is a 90% probability that a user encounters this amount of latency, or less. 10% of the time a user can expect additional latency. If your score is higher than Lighthouse's target score, users may perceive your app as laggy. Learn more.

    100
  • Time To Interactive (alpha): 1576.6ms (target: 5,000ms) Time to Interactive identifies the time at which your app appears to be ready enough to interact with. Learn more.

    98

Site is progressively enhanced

Progressive enhancement means that everyone can access the basic content and functionality of a page in any browser, and those without certain browser features may receive a reduced but still functional experience.

  • Contains some content when JavaScript is not available Your app should display some content when JavaScript is disabled, even if it's just a warning to the user that JavaScript is required to use the app. Learn more.

    Pass

Network connection is secure

Security is an important part of the web for both developers and users. Moving forward, Transport Layer Security (TLS) support will be required for many APIs.

  • Uses HTTPS: 2 insecure requests found All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more.

    Fail
    URLs
    • aadgmnobpdmgmigaicncghmmoeflnamj/ng-inspector.js
    • gppongmhjkpfnbhagpmjfkannfbllamg/…js/inject.js
  • Redirects HTTP traffic to HTTPS If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS. Learn more.

    Fail

User can be prompted to Add to Homescreen

While users can manually add your site to their homescreen in the browser menu, the prompt (aka app install banner) will proactively prompt the user to install the app if the below requirements are met and the user has visited your site at least twice (with at least five minutes between visits).

  • Registers a Service Worker The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. Learn more.

    Fail
  • Manifest exists The web app manifest is the technology that enables users to add your web app to their homescreen. Learn more.

    Fail
  • Manifest contains start_url Add a start_url to instruct the browser to launch a specific URL whenever your app is launched from a homescreen. Learn more.

    Fail
  • Manifest contains icons at least 144px

    Fail
  • Manifest contains short_name The short_name property is a requirement for Add To Homescreen. Learn more.

    Fail

Installed web app will launch with custom splash screen

A default splash screen will be constructed, but meeting these requirements guarantee a high-quality and customizable splash screen the user sees between tapping the home screen icon and your app's first paint.

  • Manifest exists The web app manifest is the technology that enables users to add your web app to their homescreen. Learn more.

    Fail
  • Manifest contains name The name property identifies your app and is required. Learn more.

    Fail
  • Manifest contains background_color When your app launches from a user's homescreen, the browser uses background_color to paint the background of the browser while your app loads for a smooth transition experience. Learn more.

    Fail
  • Manifest contains theme_color Add a theme_color to set the color of the browser's address bar. Learn more.

    Fail
  • Manifest contains icons at least 192px A 192px icon ensures that your app's icon displays well on the homescreens of the largest mobile devices. Learn more.

    Fail

Address bar matches brand colors

The browser address bar can be themed to match your site. A theme-color meta tag will upgrade the address bar when a user browses the site, and the manifest theme-color will apply the same theme site-wide once it's been added to homescreen.

  • Manifest exists The web app manifest is the technology that enables users to add your web app to their homescreen. Learn more.

    Fail
  • Has a <meta name="theme-color"> tag

    Fail
  • Manifest contains theme_color Add a theme_color to set the color of the browser's address bar. Learn more.

    Fail

Design is mobile-friendly

Users increasingly experience your app on mobile devices, so it's important to ensure that the experience can adapt to smaller screens.

  • Has a <meta name="viewport"> tag with width or initial-scale Add a viewport meta tag to optimize your app for mobile screens. Learn more.

    Pass
  • Content is sized correctly for the viewport If the width of your app's content doesn't match the width of the viewport, your app might not be optimized for mobile screens. Learn more.

    Pass

Best Practices

We've compiled some recommendations for modernizing your web app and avoiding performance pitfalls. These audits do not affect your score but are worth a look.

Using modern offline features

Using modern protocols

  • Uses HTTPS: 2 insecure requests found All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more.

    Fail
    URLs
    • aadgmnobpdmgmigaicncghmmoeflnamj/ng-inspector.js
    • gppongmhjkpfnbhagpmjfkannfbllamg/…js/inject.js
  • Uses HTTP/2 for its own resources HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. Learn more.

    Pass

Using modern CSS features

  • Avoids old CSS flexbox The 2009 spec of Flexbox is deprecated and is 2.3x slower than the latest spec. Learn more.

    Fail
    View details
    URL Line in the stylesheet / <style> Column start/end Snippet
    …css/material.css 0 43122:43142
    .mdl-badge[data-badge]:after {
      display:-webkit-box;
    }
    …css/material.css 0 43163:43183
    .mdl-badge[data-badge]:after {
      display:-ms-flexbox;
    }
    …css/material.css 0 49963:49983
    .mdl-card {
      display:-webkit-box;
    }
    …css/material.css 0 50004:50024
    .mdl-card {
      display:-ms-flexbox;
    }
    …css/material.css 0 50693:50713
    .mdl-card__title {
      display:-webkit-box;
    }
    …css/material.css 0 50734:50754
    .mdl-card__title {
      display:-ms-flexbox;
    }
    …css/material.css 0 51291:51311
    .mdl-card__title-text {
      display:-webkit-box;
    }
    …css/material.css 0 51332:51352
    .mdl-card__title-text {
      display:-ms-flexbox;
    }
    …css/material.css 0 67033:67053
    .mdl-mini-footer {
      display:-webkit-box;
    }
    …css/material.css 0 67074:67094
    .mdl-mini-footer {
      display:-ms-flexbox;
    }
    …css/material.css 0 67514:67534
    .mdl-mini-footer--link-list,.mdl-mini-footer__link-list {
      display:-webkit-box;
    }
    …css/material.css 0 67555:67575
    .mdl-mini-footer--link-list,.mdl-mini-footer__link-list {
      display:-ms-flexbox;
    }
    …css/material.css 0 77471:77491
    .mdl-navigation {
      display:-webkit-box;
    }
    …css/material.css 0 77512:77532
    .mdl-navigation {
      display:-ms-flexbox;
    }
    …css/material.css 0 77770:77790
    .mdl-layout {
      display:-webkit-box;
    }
    …css/material.css 0 77811:77831
    .mdl-layout {
      display:-ms-flexbox;
    }
    …css/material.css 0 78601:78621
    .mdl-layout__drawer {
      display:-webkit-box;
    }
    …css/material.css 0 78642:78662
    .mdl-layout__drawer {
      display:-ms-flexbox;
    }
    …css/material.css 0 81746:81766
    .mdl-layout__header {
      display:-webkit-box;
    }
    …css/material.css 0 81787:81807
    .mdl-layout__header {
      display:-ms-flexbox;
    }
    …css/material.css 0 83753:83773
    .mdl-layout--fixed-header>.mdl-layout__header {
      display:-webkit-box;
    }
    …css/material.css 0 83794:83814
    .mdl-layout--fixed-header>.mdl-layout__header {
      display:-ms-flexbox;
    }
    …css/material.css 0 84268:84288
    .mdl-layout__header-row {
      display:-webkit-box;
    }
    …css/material.css 0 84309:84329
    .mdl-layout__header-row {
      display:-ms-flexbox;
    }
    …css/material.css 0 86841:86861
    .mdl-layout__tab-bar {
      display:-webkit-box;
    }
    …css/material.css 0 86882:86902
    .mdl-layout__tab-bar {
      display:-ms-flexbox;
    }
    …css/material.css 0 99416:99436
    .mdl-slider__container {
      display:-webkit-box;
    }
    …css/material.css 0 99457:99477
    .mdl-slider__container {
      display:-ms-flexbox;
    }
    …css/material.css 0 99753:99773
    .mdl-slider__background-flex {
      display:-webkit-box;
    }
    …css/material.css 0 99794:99814
    .mdl-slider__background-flex {
      display:-ms-flexbox;
    }
    …css/material.css 734 2:23
    .mdl-tabs__tab-bar {
      display: -webkit-box;
    }
    …css/material.css 736 2:23
    .mdl-tabs__tab-bar {
      display: -ms-flexbox;
    }
    …css/material.css 1698 2:23
    .mdl-grid {
      display: -webkit-box;
    }
    …css/material.css 1700 2:23
    .mdl-grid {
      display: -ms-flexbox;
    }
    …css/material.css 0 43196:43226
    .mdl-badge[data-badge]:after {
      -webkit-box-orient:horizontal;
    }
    …css/material.css 0 50037:50065
    .mdl-card {
      -webkit-box-orient:vertical;
    }
    …css/material.css 0 51945:51964
    .mdl-card--expand {
      -webkit-box-flex:1;
    }
    …css/material.css 0 77844:77872
    .mdl-layout {
      -webkit-box-orient:vertical;
    }
    …css/material.css 0 78509:78528
    .mdl-layout-spacer {
      -webkit-box-flex:1;
    }
    …css/material.css 0 78675:78703
    .mdl-layout__drawer {
      -webkit-box-orient:vertical;
    }
    …css/material.css 0 80050:80078
    .mdl-layout__drawer .mdl-navigation {
      -webkit-box-orient:vertical;
    }
    …css/material.css 0 81820:81848
    .mdl-layout__header {
      -webkit-box-orient:vertical;
    }
    …css/material.css 0 84342:84372
    .mdl-layout__header-row {
      -webkit-box-orient:horizontal;
    }
    …css/material.css 0 85139:85169
    .mdl-layout__header-row .mdl-navigation {
      -webkit-box-orient:horizontal;
    }
    …css/material.css 0 86281:86300
    .mdl-layout__content {
      -webkit-box-flex:1;
    }
    …css/material.css 0 87339:87358
    .mdl-layout__tab-bar-container {
      -webkit-box-flex:0;
    }
    …css/material.css 0 88314:88333
    .mdl-layout__tab {
      -webkit-box-flex:0;
    }
    …css/material.css 0 88742:88761
    .mdl-layout--fixed-tabs .mdl-layout__tab {
      -webkit-box-flex:1;
    }
    …css/material.css 0 99490:99520
    .mdl-slider__container {
      -webkit-box-orient:horizontal;
    }
    …css/material.css 0 100015:100034
    .mdl-slider__background-lower {
      -webkit-box-flex:0;
    }
    …css/material.css 0 100163:100182
    .mdl-slider__background-upper {
      -webkit-box-flex:0;
    }
    …css/material.css 738 2:33
    .mdl-tabs__tab-bar {
      -webkit-box-orient: horizontal;
    }

Using modern JavaScript features

  • Uses passive listeners to improve scrolling performance Consider marking your touch and wheel event listeners as passive to improve your page's scroll performance. Learn more.

    Pass
  • Avoids Mutation Events in its own scripts Mutation Events are deprecated and harm performance. Consider using Mutation Observers instead. Learn more.

    Pass

Avoiding APIs that harm the user experience

  • Avoids document.write() For users on slow connections, external scripts dynamically injected via document.write() can delay page load by tens of seconds. Learn more.

    Pass
  • Opens external anchors using rel="noopener" Open new tabs using rel="noopener" to improve performance and prevent security vulnerabilities. Learn more.

    Pass
  • Avoids requesting the geolocation permission on page load Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to user gestures instead. Learn more.

    Pass
  • Avoids requesting the notification permission on page load Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. Learn more.

    Pass

Avoiding deprecated APIs and browser interventions

  • Avoids deprecated APIs Deprecated APIs will eventually be removed from the browser. Learn more.

    Pass

Accessibility

  • Element aria-* attributes are allowed for this role Each ARIA role supports a specific subset of aria-* attributes. Mismatching these invalidates the aria-* attributes. Learn more.

    Pass
  • Elements with ARIA roles have the required aria-* attributes Some ARIA roles have required attributes that describe the state of the element to screen readers. Learn more.

    Pass
  • Element aria-* attributes are valid and not misspelled or non-existent. Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. Learn more.

    Pass
  • Element aria-* attributes have valid values Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more.

    Pass
  • Background and foreground colors have a sufficient contrast ratio Low-contrast text is difficult or impossible for many users to read. Learn more.

    Fail
    3 elements fail this test
    • body > .wrapper > .sidebar > .name > span:nth-of-type(1)
    • body > .wrapper > .sidebar > .name > span:nth-of-type(2)
    • body > .wrapper > .sidebar > .name > span:nth-of-type(3)
  • Every image element has an alt attribute Screen reader users rely on alt text to provide descriptions of images. It's also used as fallback content when an image fails to load. Learn more.

    Pass
  • Every form element has a label Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more.

    Pass
  • No element has a tabindex attribute greater than 0 A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more.

    Pass

Other

  • Manifest's short_name won't be truncated when displayed on homescreen Make your app's short_name less than 12 characters to ensure that it's not truncated on homescreens. Learn more.

    Fail
  • Manifest's display property is set Set the display property to specify how your app launches from the homescreen. Learn more.

    Fail

Performance

These encapsulate your app's performance.

  • Unoptimized images: Potential savings of 17 KB (~90ms) Images should be optimized to save network bytes. The following images could have smaller file sizes when compressed with WebP or JPEG at 80 quality. Learn more about image optimization.

    Pass
    View details
    URL Original WebP Savings JPEG Savings
    Image preview …homepage/fun-line.png 17 KB 17 KB 99% --
  • Oversized Images Image sizes served should be based on the device display size to save network bytes. Learn more about responsive images and client hints.

    Pass
  • Critical Request Chains: 11 The Critical Request Chains below show you what resources are required for first render of this page. Improve page load by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources. Learn more.

    Fail
    • Longest chain: 1,238.1ms over 3 requests, totalling 17.59KB
    • View critical network waterfall
      Initial navigation
      / (yehuang.me)
      /css (fonts.googleapis.com) - 343.7ms, 2.88KB
      /css (fonts.googleapis.com) - 349.8ms, 2.67KB
      /icon (fonts.googleapis.com) - 355.4ms, 2.81KB
      …css/syntax.css (yehuang.me) - 372ms, 3.19KB
      …css/main.css (yehuang.me) - 418.4ms, 4.48KB
      …js/stuff.js (yehuang.me) - 466.8ms, 6.24KB
      …js/material.min.js (yehuang.me) - 601.9ms, 14.85KB
      …css/material.css (yehuang.me) - 661.6ms, 23.12KB
      …js/search.min.js (yehuang.me)
      …l/font (fonts.gstatic.com) - 1,058.2ms, 52.74KB
      …v5/N5odNRruTwjvCM8y77PhQYgp9Q8gbYrhqGlRav_IXfk.woff2 (fonts.gstatic.com) - 1,209.6ms, 63.95KB
      …homepage/fun-line.png (yehuang.me) - 1,238.1ms, 69.24KB
  • Render-blocking Stylesheets: 6 resources delayed first paint by 124ms Link elements are blocking the first paint of your page. Consider inlining critical links and deferring non-critical ones. Learn more.

    Fail
    View details
    URL Size (KB) Delayed Paint By (ms)
    /css 0 KB 77ms
    /css 0 KB 77ms
    /icon 0 KB 101ms
    …css/material.css 21 KB 124ms
    …css/syntax.css 1 KB 113ms
    …css/main.css 2 KB 76ms
  • Render-blocking scripts: 3 resources delayed first paint by 121ms Script elements are blocking the first paint of your page. Consider inlining critical scripts and deferring non-critical ones. Learn more.

    Fail
    View details
    URL Size (KB) Delayed Paint By (ms)
    …js/search.min.js 49 KB 101ms
    …js/stuff.js 4 KB 119ms
    …js/material.min.js 12 KB 121ms
  • Avoids enormous network payloads: Total size was 139 KB (target: 1,600 KB) Network transfer size costs users real dollars and is highly correlated with long load times. Try to find ways to reduce the size of required files.

    100
    View details
    URL Total Size Transfer Time
    …js/search.min.js 49 KB 250ms
    …css/material.css 21 KB 110ms
    …homepage/fun-line.png 18 KB 90ms
    /ga.js 16 KB 80ms
    …js/material.min.js 12 KB 60ms
    …v5/N5odNRruTwjvCM8y77PhQYgp9Q8gbYrhqGlRav_IXfk.woff2 12 KB 60ms
    …js/stuff.js 4 KB 20ms
    / 2 KB 10ms
    …css/main.css 2 KB 10ms
    …l/font?kit=… 1 KB 10ms
  • Avoids an excessive DOM size: 169 nodes (target: 1,500 nodes) Browser engineers recommend pages contain fewer than ~1,500 DOM nodes. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory, cause longer style calculations, and produce costly layout reflows. Learn more.

    100
    More information
    Total DOM Nodes
    169
    target: < 1,500 nodes
    DOM Depth
    8
    target: < 32
    Maximum Children
    23
    target: < 60 nodes
  • User Timing marks and measures: 0 Consider instrumenting your app with the User Timing API to create custom, real-world measurements of key user experiences. Learn more.

    Pass

Fancier stuff

A list of newer features that you could be using in your app. These audits do not affect your score and are just suggestions.

New JavaScript features

  • Avoids Date.now() in its own scripts Consider using performance.now() from the User Timing API instead. It provides high-precision timestamps, independent of the system clock. Learn more.

    Fail
    View details
    URL Line/Col Eval'd?
    https://yehuang.me/assets/js/search.min.js 25:25187
    https://yehuang.me/assets/js/search.min.js 25:3336
  • Avoids console.time() in its own scripts Consider using performance.mark() and performance.measure() from the User Timing API instead. They provide high-precision timestamps, independent of the system clock, and are integrated in the Chrome DevTools Timeline. Learn more.

    Pass
{ "lighthouseVersion": "1.6.5", "generatedTime": "2017-05-10T15:27:13.999Z", "initialUrl": "https://yehuang.me/", "url": "https://yehuang.me/", "audits": { "is-on-https": { "score": false, "displayValue": "2 insecure requests found", "rawValue": false, "extendedInfo": { "formatter": "urllist", "value": [ { "url": "aadgmnobpdmgmigaicncghmmoeflnamj/ng-inspector.js" }, { "url": "gppongmhjkpfnbhagpmjfkannfbllamg/…js/inject.js" } ] }, "name": "is-on-https", "category": "Security", "description": "Uses HTTPS", "helpText": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https)." }, "redirects-http": { "score": false, "displayValue": "", "rawValue": false, "name": "redirects-http", "category": "Security", "description": "Redirects HTTP traffic to HTTPS", "helpText": "If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http-redirects-to-https)." }, "service-worker": { "score": false, "displayValue": "", "rawValue": false, "name": "service-worker", "category": "Offline", "description": "Registers a Service Worker", "helpText": "The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/registered-service-worker)." }, "works-offline": { "score": false, "displayValue": "", "rawValue": false, "name": "works-offline", "category": "Offline", "description": "Responds with a 200 when offline", "helpText": "If you're building a Progressive Web App, consider using a service worker so that your app can work offline. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http-200-when-offline)." }, "viewport": { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "viewport", "category": "Mobile Friendly", "description": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`", "helpText": "Add a viewport meta tag to optimize your app for mobile screens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/has-viewport-meta-tag)." }, "manifest-display": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-display", "category": "Manifest", "description": "Manifest's `display` property is set", "helpText": "Set the `display` property to specify how your app launches from the homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-has-display-set)." }, "without-javascript": { "score": true, "displayValue": "", "rawValue": true, "name": "without-javascript", "category": "JavaScript", "description": "Contains some content when JavaScript is not available", "helpText": "Your app should display some content when JavaScript is disabled, even if it's just a warning to the user that JavaScript is required to use the app. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/no-js)." }, "first-meaningful-paint": { "score": 98, "displayValue": "1332.2ms", "rawValue": 1332.2, "optimalValue": "1,600ms", "extendedInfo": { "value": { "timestamps": { "navStart": 30875747358, "fCP": 30877018347, "fMP": 30877079525 }, "timings": { "navStart": 0, "fCP": 1270.989, "fMP": 1332.167 } }, "formatter": "null" }, "name": "first-meaningful-paint", "category": "Performance", "description": "First meaningful paint", "helpText": "First meaningful paint measures when the primary content of a page is visible. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/first-meaningful-paint)." }, "speed-index-metric": { "score": 97, "displayValue": "1507", "rawValue": 1507, "optimalValue": "1,250", "extendedInfo": { "formatter": "speedline", "value": { "timings": { "firstVisualChange": 1506, "visuallyComplete": 1570, "speedIndex": 1508.1077799985558, "perceptualSpeedIndex": 1507.1820738436986 }, "timestamps": { "firstVisualChange": 30877059300, "visuallyComplete": 30877123300, "speedIndex": 30877061407.78, "perceptualSpeedIndex": 30877060482.073845 }, "frames": [ { "timestamp": 30875553.3, "progress": 0 }, { "timestamp": 30877060.132, "progress": 99.45120029291164 }, { "timestamp": 30877123.921, "progress": 100 } ] } }, "name": "speed-index-metric", "category": "Performance", "description": "Perceptual Speed Index", "helpText": "Speed Index shows how quickly the contents of a page are visibly populated. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/speed-index)." }, "estimated-input-latency": { "score": 100, "displayValue": "16ms", "rawValue": 16, "optimalValue": "50ms", "extendedInfo": { "value": [ { "percentile": 0.5, "time": 16 }, { "percentile": 0.75, "time": 16 }, { "percentile": 0.9, "time": 16 }, { "percentile": 0.99, "time": 114.8853699984329 }, { "percentile": 1, "time": 128.2039999984504 } ], "formatter": "null" }, "name": "estimated-input-latency", "category": "Performance", "description": "Estimated Input Latency", "helpText": "The score above is an estimate of how long your app takes to respond to user input, in milliseconds. There is a 90% probability that a user encounters this amount of latency, or less. 10% of the time a user can expect additional latency. If your score is higher than Lighthouse's target score, users may perceive your app as laggy. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/estimated-input-latency)." }, "time-to-interactive": { "score": 98, "displayValue": "1576.6ms", "rawValue": 1576.6, "optimalValue": "5,000ms", "extendedInfo": { "value": { "timings": { "fMP": 1332.2, "visuallyReady": 1376.563, "timeToInteractive": 1576.563 }, "timestamps": { "fMP": 30877079525, "visuallyReady": 30877123921, "timeToInteractive": 30877323921 }, "expectedLatencyAtTTI": 16.293, "foundLatencies": [ { "estLatency": 90.41800000000012, "startTime": "1376.6" }, { "estLatency": 90.41800000000012, "startTime": "1426.6" }, { "estLatency": 90.41800000000006, "startTime": "1476.6" }, { "estLatency": 57.64099999743718, "startTime": "1526.6" }, { "estLatency": 16.293499999743716, "startTime": "1576.6" } ] }, "formatter": "null" }, "name": "time-to-interactive", "category": "Performance", "description": "Time To Interactive (alpha)", "helpText": "Time to Interactive identifies the time at which your app appears to be ready enough to interact with. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/time-to-interactive)." }, "user-timings": { "score": true, "displayValue": "0", "rawValue": true, "extendedInfo": { "formatter": "userTimings", "value": [] }, "informative": true, "name": "user-timings", "category": "Performance", "description": "User Timing marks and measures", "helpText": "Consider instrumenting your app with the User Timing API to create custom, real-world measurements of key user experiences. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/user-timing)." }, "critical-request-chains": { "score": false, "displayValue": "11", "rawValue": false, "optimalValue": 0, "extendedInfo": { "formatter": "criticalRequestChains", "value": { "62912.1": { "request": { "url": "https://yehuang.me/", "startTime": 30875.765972, "endTime": 30875.93157, "responseReceivedTime": 30875.924219, "transferSize": 2520 }, "children": { "62912.2": { "request": { "url": "https://fonts.googleapis.com/css?family=Cutive+Mono", "startTime": 30875.941743, "endTime": 30876.109673, "responseReceivedTime": 30876.103166, "transferSize": 425 }, "children": {} }, "62912.3": { "request": { "url": "https://fonts.googleapis.com/css?family=Economica&text=!MU-ANCHIOU", "startTime": 30875.942278, "endTime": 30876.115755, "responseReceivedTime": 30876.110132, "transferSize": 219 }, "children": {} }, "62912.4": { "request": { "url": "https://fonts.googleapis.com/icon?family=Material+Icons", "startTime": 30875.942945, "endTime": 30876.12142, "responseReceivedTime": 30876.117063, "transferSize": 355 }, "children": {} }, "62912.6": { "request": { "url": "https://yehuang.me/assets/css/syntax.css", "startTime": 30875.94391, "endTime": 30876.137956, "responseReceivedTime": 30876.131542, "transferSize": 745 }, "children": {} }, "62912.7": { "request": { "url": "https://yehuang.me/assets/css/main.css", "startTime": 30875.944406, "endTime": 30876.184335, "responseReceivedTime": 30876.138667, "transferSize": 2066 }, "children": {} }, "62912.9": { "request": { "url": "https://yehuang.me/assets/js/stuff.js", "startTime": 30875.945495, "endTime": 30876.232737, "responseReceivedTime": 30876.166228, "transferSize": 3869 }, "children": {} }, "62912.10": { "request": { "url": "https://yehuang.me/assets/js/material.min.js", "startTime": 30875.945988, "endTime": 30876.367848, "responseReceivedTime": 30876.169328, "transferSize": 12686 }, "children": {} }, "62912.5": { "request": { "url": "https://yehuang.me/assets/css/material.css", "startTime": 30875.943475, "endTime": 30876.427602, "responseReceivedTime": 30876.124417, "transferSize": 21158 }, "children": {} }, "62912.8": { "request": { "url": "https://yehuang.me/assets/js/search.min.js", "startTime": 30875.944907, "endTime": 30876.575522, "responseReceivedTime": 30876.16333, "transferSize": 50369 }, "children": { "62912.23": { "request": { "url": "https://fonts.gstatic.com/l/font?kit=moxe3LED6tpJEJY6zBmQ1rYAFEb4Vls3XwWXPPvTajI&skey=787fcf9775092ba7&v=v4", "startTime": 30876.635833, "endTime": 30876.824221, "responseReceivedTime": 30876.818037, "transferSize": 1116 }, "children": {} }, "62912.22": { "request": { "url": "https://fonts.gstatic.com/s/cutivemono/v5/N5odNRruTwjvCM8y77PhQYgp9Q8gbYrhqGlRav_IXfk.woff2", "startTime": 30876.63482, "endTime": 30876.97557, "responseReceivedTime": 30876.804079, "transferSize": 12599 }, "children": {} }, "62912.26": { "request": { "url": "https://yehuang.me/images/homepage/fun-line.png", "startTime": 30876.637, "endTime": 30877.004122, "responseReceivedTime": 30876.82509, "transferSize": 18016 }, "children": {} } } } } } } }, "informative": true, "name": "critical-request-chains", "category": "Performance", "description": "Critical Request Chains", "helpText": "The Critical Request Chains below show you what resources are required for first render of this page. Improve page load by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/critical-request-chains)." }, "manifest-exists": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-exists", "category": "Manifest", "description": "Manifest exists", "helpText": "The web app manifest is the technology that enables users to add your web app to their homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-exists)." }, "manifest-background-color": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-background-color", "category": "Manifest", "description": "Manifest contains `background_color`", "helpText": "When your app launches from a user's homescreen, the browser uses `background_color` to paint the background of the browser while your app loads for a smooth transition experience. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-background_color)." }, "manifest-theme-color": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-theme-color", "category": "Manifest", "description": "Manifest contains `theme_color`", "helpText": "Add a `theme_color` to set the color of the browser's address bar. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-theme_color)." }, "manifest-icons-min-192": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-icons-min-192", "category": "Manifest", "description": "Manifest contains icons at least 192px", "helpText": "A 192px icon ensures that your app's icon displays well on the homescreens of the largest mobile devices. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-192px-icon)." }, "manifest-icons-min-144": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-icons-min-144", "category": "Manifest", "description": "Manifest contains icons at least 144px" }, "manifest-name": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-name", "category": "Manifest", "description": "Manifest contains `name`", "helpText": "The `name` property identifies your app and is required. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-name)." }, "manifest-short-name": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-short-name", "category": "Manifest", "description": "Manifest contains `short_name`", "helpText": "The `short_name` property is a requirement for Add To Homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-short_name)." }, "manifest-short-name-length": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-short-name-length", "category": "Manifest", "description": "Manifest's `short_name` won't be truncated when displayed on homescreen", "helpText": "Make your app's `short_name` less than 12 characters to ensure that it's not truncated on homescreens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-short_name-is-not-truncated)." }, "manifest-start-url": { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-start-url", "category": "Manifest", "description": "Manifest contains `start_url`", "helpText": "Add a `start_url` to instruct the browser to launch a specific URL whenever your app is launched from a homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-start_url)." }, "theme-color-meta": { "score": false, "displayValue": "", "rawValue": false, "name": "theme-color-meta", "category": "HTML", "description": "Has a `<meta name=\"theme-color\">` tag" }, "content-width": { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "content-width", "category": "Mobile Friendly", "description": "Content is sized correctly for the viewport", "helpText": "If the width of your app's content doesn't match the width of the viewport, your app might not be optimized for mobile screens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/content-sized-correctly-for-viewport)." }, "deprecations": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "deprecations", "category": "Deprecations", "description": "Avoids deprecated APIs", "helpText": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://www.chromestatus.com/features#deprecated)." }, "aria-allowed-attr": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-allowed-attr", "category": "Accessibility", "description": "Element aria-* attributes are allowed for this role", "helpText": "Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/aria-allowed-attributes)." }, "aria-required-attr": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-required-attr", "category": "Accessibility", "description": "Elements with ARIA roles have the required aria-* attributes", "helpText": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/required-aria-attributes)." }, "aria-valid-attr-value": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-valid-attr-value", "category": "Accessibility", "description": "Element aria-* attributes have valid values", "helpText": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/valid-aria-values)." }, "aria-valid-attr": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-valid-attr", "category": "Accessibility", "description": "Element aria-* attributes are valid and not misspelled or non-existent.", "helpText": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/valid-aria-attributes)." }, "color-contrast": { "score": false, "displayValue": "", "rawValue": false, "extendedInfo": { "formatter": "accessibility", "value": { "description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds", "help": "Elements must have sufficient color contrast", "helpUrl": "https://dequeuniversity.com/rules/axe/2.1/color-contrast?application=axeAPI", "id": "color-contrast", "impact": "critical", "nodes": [ { "all": [], "any": [ { "data": { "bgColor": "#ffffff", "contrastRatio": "2.12", "fgColor": "#b2b776", "fontSize": "14.4pt", "fontWeight": "normal" }, "id": "color-contrast", "impact": "critical", "message": "Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "relatedNodes": [] } ], "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "html": "<span class=\"mu-an\">黄野</span>", "impact": "critical", "none": [], "target": [ "body > .wrapper > .sidebar > .name > span:nth-of-type(1)" ] }, { "all": [], "any": [ { "data": { "bgColor": "#ffffff", "contrastRatio": "2.12", "fgColor": "#b2b776", "fontSize": "14.4pt", "fontWeight": "normal" }, "id": "color-contrast", "impact": "critical", "message": "Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "relatedNodes": [] } ], "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "html": "<span class=\"mu-an\">Crab</span>", "impact": "critical", "none": [], "target": [ "body > .wrapper > .sidebar > .name > span:nth-of-type(2)" ] }, { "all": [], "any": [ { "data": { "bgColor": "#ffffff", "contrastRatio": "2.12", "fgColor": "#b2b776", "fontSize": "14.4pt", "fontWeight": "normal" }, "id": "color-contrast", "impact": "critical", "message": "Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "relatedNodes": [] } ], "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "html": "<span class=\"mu-an\">Canon</span>", "impact": "critical", "none": [], "target": [ "body > .wrapper > .sidebar > .name > span:nth-of-type(3)" ] } ], "tags": [ "wcag2aa", "wcag143" ] } }, "name": "color-contrast", "category": "Accessibility", "description": "Background and foreground colors have a sufficient contrast ratio", "helpText": "Low-contrast text is difficult or impossible for many users to read. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/contrast-ratio)." }, "image-alt": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "image-alt", "category": "Accessibility", "description": "Every image element has an alt attribute", "helpText": "Screen reader users rely on `alt` text to provide descriptions of images. It's also used as fallback content when an image fails to load. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/alt-attribute)." }, "label": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "label", "category": "Accessibility", "description": "Every form element has a label", "helpText": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/form-labels)." }, "tabindex": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "tabindex", "category": "Accessibility", "description": "No element has a `tabindex` attribute greater than 0", "helpText": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/tabindex)." }, "total-byte-weight": { "score": 100, "displayValue": "Total size was 139 KB", "rawValue": 142462, "optimalValue": "1,600 KB", "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…js/search.min.js", "totalBytes": 50369, "totalKb": "49 KB", "totalMs": "250ms" }, { "url": "…css/material.css", "totalBytes": 21158, "totalKb": "21 KB", "totalMs": "110ms" }, { "url": "…homepage/fun-line.png", "totalBytes": 18016, "totalKb": "18 KB", "totalMs": "90ms" }, { "url": "/ga.js", "totalBytes": 16181, "totalKb": "16 KB", "totalMs": "80ms" }, { "url": "…js/material.min.js", "totalBytes": 12686, "totalKb": "12 KB", "totalMs": "60ms" }, { "url": "…v5/N5odNRruTwjvCM8y77PhQYgp9Q8gbYrhqGlRav_IXfk.woff2", "totalBytes": 12599, "totalKb": "12 KB", "totalMs": "60ms" }, { "url": "…js/stuff.js", "totalBytes": 3869, "totalKb": "4 KB", "totalMs": "20ms" }, { "url": "/", "totalBytes": 2520, "totalKb": "2 KB", "totalMs": "10ms" }, { "url": "…css/main.css", "totalBytes": 2066, "totalKb": "2 KB", "totalMs": "10ms" }, { "url": "…l/font?kit=…", "totalBytes": 1116, "totalKb": "1 KB", "totalMs": "10ms" } ], "tableHeadings": { "url": "URL", "totalKb": "Total Size", "totalMs": "Transfer Time" } } }, "informative": true, "name": "total-byte-weight", "category": "Network", "description": "Avoids enormous network payloads", "helpText": "Network transfer size [costs users real dollars](https://whatdoesmysitecost.com/) and is [highly correlated](http://httparchive.org/interesting.php#onLoad) with long load times. Try to find ways to reduce the size of required files." }, "uses-optimized-images": { "score": true, "displayValue": "Potential savings of 17 KB (~90ms)", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…homepage/fun-line.png", "preview": { "url": "https://yehuang.me/images/homepage/fun-line.png", "mimeType": "image/png" }, "totalBytes": 17888, "wastedBytes": 17732, "webpSavings": "17 KB _99%_", "wastedKb": "17 KB", "wastedMs": "90ms", "totalKb": "17 KB", "totalMs": "90ms", "potentialSavings": "17 KB _0%_" } ], "tableHeadings": { "preview": "", "url": "URL", "totalKb": "Original", "webpSavings": "WebP Savings", "jpegSavings": "JPEG Savings" } } }, "informative": true, "name": "uses-optimized-images", "category": "Images", "description": "Unoptimized images", "helpText": "Images should be optimized to save network bytes. The following images could have smaller file sizes when compressed with [WebP](https://developers.google.com/speed/webp/) or JPEG at 80 quality. [Learn more about image optimization](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/image-optimization)." }, "uses-responsive-images": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "preview": "", "url": "URL", "totalKb": "Original", "potentialSavings": "Potential Savings" } } }, "informative": true, "name": "uses-responsive-images", "category": "Images", "description": "Oversized Images", "helpText": "Image sizes served should be based on the device display size to save network bytes. Learn more about [responsive images](https://developers.google.com/web/fundamentals/design-and-ui/media/images) and [client hints](https://developers.google.com/web/updates/2015/09/automating-resource-selection-with-client-hints)." }, "appcache-manifest": { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "appcache-manifest", "category": "Offline", "description": "Avoids Application Cache", "helpText": "Application Cache has been [deprecated](https://html.spec.whatwg.org/multipage/browsers.html#offline) by [Service Workers](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers). Consider implementing an offline solution using the [Cache Storage API](https://developer.mozilla.org/en-US/docs/Web/API/Cache)." }, "dom-size": { "score": 100, "displayValue": "169 nodes", "rawValue": 169, "optimalValue": "1,500 nodes", "extendedInfo": { "formatter": "card", "value": [ { "title": "Total DOM Nodes", "value": "169", "target": "< 1,500 nodes" }, { "title": "DOM Depth", "value": "8", "snippet": "html.mdl-js >\n body >\n div.wrapper >\n div.sidebar >\n div.sidebar-menu >\n div.sidebar-blogs >\n span >\n a", "target": "< 32" }, { "title": "Maximum Children", "value": "23", "snippet": "Element with most children:\nhead", "target": "< 60 nodes" } ] }, "name": "dom-size", "category": "Performance", "description": "Avoids an excessive DOM size", "helpText": "Browser engineers recommend pages contain fewer than ~1,500 DOM nodes. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://developers.google.com/web/fundamentals/performance/rendering/)." }, "external-anchors-use-rel-noopener": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "external-anchors-use-rel-noopener", "category": "Performance", "description": "Opens external anchors using rel=\"noopener\"", "helpText": "Open new tabs using `rel=\"noopener\"` to improve performance and prevent security vulnerabilities. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/noopener)." }, "geolocation-on-start": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "geolocation-on-start", "category": "UX", "description": "Avoids requesting the geolocation permission on page load", "helpText": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/geolocation-on-load)." }, "link-blocking-first-paint": { "score": false, "displayValue": "6 resources delayed first paint by 124ms", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "/css", "totalKb": "0 KB", "totalMs": "77ms" }, { "url": "/css", "totalKb": "0 KB", "totalMs": "77ms" }, { "url": "/icon", "totalKb": "0 KB", "totalMs": "101ms" }, { "url": "…css/material.css", "totalKb": "21 KB", "totalMs": "124ms" }, { "url": "…css/syntax.css", "totalKb": "1 KB", "totalMs": "113ms" }, { "url": "…css/main.css", "totalKb": "2 KB", "totalMs": "76ms" } ], "tableHeadings": { "url": "URL", "totalKb": "Size (KB)", "totalMs": "Delayed Paint By (ms)" } } }, "informative": true, "name": "link-blocking-first-paint", "category": "Performance", "description": "Render-blocking Stylesheets", "helpText": "Link elements are blocking the first paint of your page. Consider inlining critical links and deferring non-critical ones. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/blocking-resources)." }, "no-console-time": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "isEval": "Eval'd?" } } }, "name": "no-console-time", "category": "JavaScript", "description": "Avoids `console.time()` in its own scripts", "helpText": "Consider using `performance.mark()` and `performance.measure()` from the User Timing API instead. They provide high-precision timestamps, independent of the system clock, and are integrated in the Chrome DevTools Timeline. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/console-time)." }, "no-datenow": { "score": false, "displayValue": "", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "args": [], "col": 25187, "isEval": false, "isExtension": false, "line": 25, "url": "https://yehuang.me/assets/js/search.min.js" }, { "args": [], "col": 3336, "isEval": false, "isExtension": false, "line": 25, "url": "https://yehuang.me/assets/js/search.min.js" } ], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "isEval": "Eval'd?" } } }, "name": "no-datenow", "category": "JavaScript", "description": "Avoids `Date.now()` in its own scripts", "helpText": "Consider using `performance.now()` from the User Timing API instead. It provides high-precision timestamps, independent of the system clock. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/date-now)." }, "no-document-write": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "no-document-write", "category": "Performance", "description": "Avoids `document.write()`", "helpText": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/document-write)." }, "no-mutation-events": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "type": "Event", "code": "Snippet" } } }, "name": "no-mutation-events", "category": "JavaScript", "description": "Avoids Mutation Events in its own scripts", "helpText": "Mutation Events are deprecated and harm performance. Consider using Mutation Observers instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/mutation-events)." }, "no-old-flexbox": { "score": false, "displayValue": "", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…css/material.css", "location": "43122:43142", "startLine": 0, "pre": ".mdl-badge[data-badge]:after {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "43163:43183", "startLine": 0, "pre": ".mdl-badge[data-badge]:after {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "49963:49983", "startLine": 0, "pre": ".mdl-card {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "50004:50024", "startLine": 0, "pre": ".mdl-card {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "50693:50713", "startLine": 0, "pre": ".mdl-card__title {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "50734:50754", "startLine": 0, "pre": ".mdl-card__title {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "51291:51311", "startLine": 0, "pre": ".mdl-card__title-text {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "51332:51352", "startLine": 0, "pre": ".mdl-card__title-text {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "67033:67053", "startLine": 0, "pre": ".mdl-mini-footer {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "67074:67094", "startLine": 0, "pre": ".mdl-mini-footer {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "67514:67534", "startLine": 0, "pre": ".mdl-mini-footer--link-list,.mdl-mini-footer__link-list {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "67555:67575", "startLine": 0, "pre": ".mdl-mini-footer--link-list,.mdl-mini-footer__link-list {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "77471:77491", "startLine": 0, "pre": ".mdl-navigation {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "77512:77532", "startLine": 0, "pre": ".mdl-navigation {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "77770:77790", "startLine": 0, "pre": ".mdl-layout {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "77811:77831", "startLine": 0, "pre": ".mdl-layout {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "78601:78621", "startLine": 0, "pre": ".mdl-layout__drawer {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "78642:78662", "startLine": 0, "pre": ".mdl-layout__drawer {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "81746:81766", "startLine": 0, "pre": ".mdl-layout__header {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "81787:81807", "startLine": 0, "pre": ".mdl-layout__header {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "83753:83773", "startLine": 0, "pre": ".mdl-layout--fixed-header>.mdl-layout__header {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "83794:83814", "startLine": 0, "pre": ".mdl-layout--fixed-header>.mdl-layout__header {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "84268:84288", "startLine": 0, "pre": ".mdl-layout__header-row {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "84309:84329", "startLine": 0, "pre": ".mdl-layout__header-row {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "86841:86861", "startLine": 0, "pre": ".mdl-layout__tab-bar {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "86882:86902", "startLine": 0, "pre": ".mdl-layout__tab-bar {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "99416:99436", "startLine": 0, "pre": ".mdl-slider__container {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "99457:99477", "startLine": 0, "pre": ".mdl-slider__container {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "99753:99773", "startLine": 0, "pre": ".mdl-slider__background-flex {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "99794:99814", "startLine": 0, "pre": ".mdl-slider__background-flex {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 734, "pre": ".mdl-tabs__tab-bar {\n display: -webkit-box;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 736, "pre": ".mdl-tabs__tab-bar {\n display: -ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 1698, "pre": ".mdl-grid {\n display: -webkit-box;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 1700, "pre": ".mdl-grid {\n display: -ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "43196:43226", "startLine": 0, "pre": ".mdl-badge[data-badge]:after {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "50037:50065", "startLine": 0, "pre": ".mdl-card {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "51945:51964", "startLine": 0, "pre": ".mdl-card--expand {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "77844:77872", "startLine": 0, "pre": ".mdl-layout {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "78509:78528", "startLine": 0, "pre": ".mdl-layout-spacer {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "78675:78703", "startLine": 0, "pre": ".mdl-layout__drawer {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "80050:80078", "startLine": 0, "pre": ".mdl-layout__drawer .mdl-navigation {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "81820:81848", "startLine": 0, "pre": ".mdl-layout__header {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "84342:84372", "startLine": 0, "pre": ".mdl-layout__header-row {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "85139:85169", "startLine": 0, "pre": ".mdl-layout__header-row .mdl-navigation {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "86281:86300", "startLine": 0, "pre": ".mdl-layout__content {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "87339:87358", "startLine": 0, "pre": ".mdl-layout__tab-bar-container {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "88314:88333", "startLine": 0, "pre": ".mdl-layout__tab {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "88742:88761", "startLine": 0, "pre": ".mdl-layout--fixed-tabs .mdl-layout__tab {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "99490:99520", "startLine": 0, "pre": ".mdl-slider__container {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "100015:100034", "startLine": 0, "pre": ".mdl-slider__background-lower {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "100163:100182", "startLine": 0, "pre": ".mdl-slider__background-upper {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "2:33", "startLine": 738, "pre": ".mdl-tabs__tab-bar {\n -webkit-box-orient: horizontal;\n}" } ], "tableHeadings": { "url": "URL", "startLine": "Line in the stylesheet / <style>", "location": "Column start/end", "pre": "Snippet" } } }, "name": "no-old-flexbox", "category": "CSS", "description": "Avoids old CSS flexbox", "helpText": "The 2009 spec of Flexbox is deprecated and is 2.3x slower than the latest spec. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/old-flexbox)." }, "no-websql": { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "no-websql", "category": "Offline", "description": "Avoids WebSQL DB", "helpText": "Web SQL is deprecated. Consider using IndexedDB instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/web-sql)." }, "notification-on-start": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "notification-on-start", "category": "UX", "description": "Avoids requesting the notification permission on page load", "helpText": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/notifications-on-load)." }, "script-blocking-first-paint": { "score": false, "displayValue": "3 resources delayed first paint by 121ms", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…js/search.min.js", "totalKb": "49 KB", "totalMs": "101ms" }, { "url": "…js/stuff.js", "totalKb": "4 KB", "totalMs": "119ms" }, { "url": "…js/material.min.js", "totalKb": "12 KB", "totalMs": "121ms" } ], "tableHeadings": { "url": "URL", "totalKb": "Size (KB)", "totalMs": "Delayed Paint By (ms)" } } }, "informative": true, "name": "script-blocking-first-paint", "category": "Performance", "description": "Render-blocking scripts", "helpText": "Script elements are blocking the first paint of your page. Consider inlining critical scripts and deferring non-critical ones. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/blocking-resources)." }, "uses-http2": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "protocol": "Protocol" } } }, "name": "uses-http2", "category": "Performance", "description": "Uses HTTP/2 for its own resources", "helpText": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http2)." }, "uses-passive-event-listeners": { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "type": "Type", "pre": "Snippet" } } }, "name": "uses-passive-event-listeners", "category": "JavaScript", "description": "Uses passive listeners to improve scrolling performance", "helpText": "Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/passive-event-listeners)." } }, "runtimeConfig": { "environment": [ { "name": "Device Emulation", "enabled": true, "description": "Nexus 5X" }, { "name": "Network Throttling", "enabled": true, "description": "150ms RTT, 1.6Mbps down, 0.7Mbps up" }, { "name": "CPU Throttling", "enabled": false, "description": "5x slowdown" } ], "blockedUrlPatterns": [] }, "aggregations": [ { "name": "Progressive Web App", "description": "These audits validate the aspects of a Progressive Web App. They are a subset of the [PWA Checklist](https://developers.google.com/web/progressive-web-apps/checklist).", "scored": true, "total": 0.3728125, "categorizable": true, "score": [ { "overall": 0, "name": "App can load on offline/flaky connections", "description": "Ensuring your web app can respond when the network connection is unavailable or flaky is critical to providing your users a good experience. This is achieved through use of a [Service Worker](https://developers.google.com/web/fundamentals/primers/service-worker/).", "subItems": [ { "score": false, "displayValue": "", "rawValue": false, "name": "service-worker", "category": "Offline", "description": "Registers a Service Worker", "helpText": "The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/registered-service-worker)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "works-offline", "category": "Offline", "description": "Responds with a 200 when offline", "helpText": "If you're building a Progressive Web App, consider using a service worker so that your app can work offline. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http-200-when-offline)." } ] }, { "overall": 0.9825, "name": "Page load performance is fast", "description": "Users notice if sites and apps don't perform well. These top-level metrics capture the most important perceived performance concerns.", "subItems": [ { "score": 98, "displayValue": "1332.2ms", "rawValue": 1332.2, "optimalValue": "1,600ms", "extendedInfo": { "value": { "timestamps": { "navStart": 30875747358, "fCP": 30877018347, "fMP": 30877079525 }, "timings": { "navStart": 0, "fCP": 1270.989, "fMP": 1332.167 } }, "formatter": "null" }, "name": "first-meaningful-paint", "category": "Performance", "description": "First meaningful paint", "helpText": "First meaningful paint measures when the primary content of a page is visible. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/first-meaningful-paint)." }, { "score": 97, "displayValue": "1507", "rawValue": 1507, "optimalValue": "1,250", "extendedInfo": { "formatter": "speedline", "value": { "timings": { "firstVisualChange": 1506, "visuallyComplete": 1570, "speedIndex": 1508.1077799985558, "perceptualSpeedIndex": 1507.1820738436986 }, "timestamps": { "firstVisualChange": 30877059300, "visuallyComplete": 30877123300, "speedIndex": 30877061407.78, "perceptualSpeedIndex": 30877060482.073845 }, "frames": [ { "timestamp": 30875553.3, "progress": 0 }, { "timestamp": 30877060.132, "progress": 99.45120029291164 }, { "timestamp": 30877123.921, "progress": 100 } ] } }, "name": "speed-index-metric", "category": "Performance", "description": "Perceptual Speed Index", "helpText": "Speed Index shows how quickly the contents of a page are visibly populated. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/speed-index)." }, { "score": 100, "displayValue": "16ms", "rawValue": 16, "optimalValue": "50ms", "extendedInfo": { "value": [ { "percentile": 0.5, "time": 16 }, { "percentile": 0.75, "time": 16 }, { "percentile": 0.9, "time": 16 }, { "percentile": 0.99, "time": 114.8853699984329 }, { "percentile": 1, "time": 128.2039999984504 } ], "formatter": "null" }, "name": "estimated-input-latency", "category": "Performance", "description": "Estimated Input Latency", "helpText": "The score above is an estimate of how long your app takes to respond to user input, in milliseconds. There is a 90% probability that a user encounters this amount of latency, or less. 10% of the time a user can expect additional latency. If your score is higher than Lighthouse's target score, users may perceive your app as laggy. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/estimated-input-latency)." }, { "score": 98, "displayValue": "1576.6ms", "rawValue": 1576.6, "optimalValue": "5,000ms", "extendedInfo": { "value": { "timings": { "fMP": 1332.2, "visuallyReady": 1376.563, "timeToInteractive": 1576.563 }, "timestamps": { "fMP": 30877079525, "visuallyReady": 30877123921, "timeToInteractive": 30877323921 }, "expectedLatencyAtTTI": 16.293, "foundLatencies": [ { "estLatency": 90.41800000000012, "startTime": "1376.6" }, { "estLatency": 90.41800000000012, "startTime": "1426.6" }, { "estLatency": 90.41800000000006, "startTime": "1476.6" }, { "estLatency": 57.64099999743718, "startTime": "1526.6" }, { "estLatency": 16.293499999743716, "startTime": "1576.6" } ] }, "formatter": "null" }, "name": "time-to-interactive", "category": "Performance", "description": "Time To Interactive (alpha)", "helpText": "Time to Interactive identifies the time at which your app appears to be ready enough to interact with. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/time-to-interactive)." } ] }, { "overall": 1, "name": "Site is progressively enhanced", "description": "Progressive enhancement means that everyone can access the basic content and functionality of a page in any browser, and those without certain browser features may receive a reduced but still functional experience.", "subItems": [ { "score": true, "displayValue": "", "rawValue": true, "name": "without-javascript", "category": "JavaScript", "description": "Contains some content when JavaScript is not available", "helpText": "Your app should display some content when JavaScript is disabled, even if it's just a warning to the user that JavaScript is required to use the app. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/no-js)." } ] }, { "overall": 0, "name": "Network connection is secure", "description": "Security is an important part of the web for both developers and users. Moving forward, Transport Layer Security (TLS) support will be required for many APIs.", "subItems": [ { "score": false, "displayValue": "2 insecure requests found", "rawValue": false, "extendedInfo": { "formatter": "urllist", "value": [ { "url": "aadgmnobpdmgmigaicncghmmoeflnamj/ng-inspector.js" }, { "url": "gppongmhjkpfnbhagpmjfkannfbllamg/…js/inject.js" } ] }, "name": "is-on-https", "category": "Security", "description": "Uses HTTPS", "helpText": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "redirects-http", "category": "Security", "description": "Redirects HTTP traffic to HTTPS", "helpText": "If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http-redirects-to-https)." } ] }, { "overall": 0, "name": "User can be prompted to Add to Homescreen", "description": "While users can manually add your site to their homescreen in the browser menu, the [prompt (aka app install banner)](https://developers.google.com/web/updates/2015/03/increasing-engagement-with-app-install-banners-in-chrome-for-android) will proactively prompt the user to install the app if the below requirements are met and the user has visited your site at least twice (with at least five minutes between visits).", "subItems": [ { "score": false, "displayValue": "", "rawValue": false, "name": "service-worker", "category": "Offline", "description": "Registers a Service Worker", "helpText": "The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/registered-service-worker)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-exists", "category": "Manifest", "description": "Manifest exists", "helpText": "The web app manifest is the technology that enables users to add your web app to their homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-exists)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-start-url", "category": "Manifest", "description": "Manifest contains `start_url`", "helpText": "Add a `start_url` to instruct the browser to launch a specific URL whenever your app is launched from a homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-start_url)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-icons-min-144", "category": "Manifest", "description": "Manifest contains icons at least 144px" }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-short-name", "category": "Manifest", "description": "Manifest contains `short_name`", "helpText": "The `short_name` property is a requirement for Add To Homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-short_name)." } ] }, { "overall": 0, "name": "Installed web app will launch with custom splash screen", "description": "A default splash screen will be constructed, but meeting these requirements guarantee a high-quality and customizable [splash screen](https://developers.google.com/web/updates/2015/10/splashscreen) the user sees between tapping the home screen icon and your app's first paint.", "subItems": [ { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-exists", "category": "Manifest", "description": "Manifest exists", "helpText": "The web app manifest is the technology that enables users to add your web app to their homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-exists)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-name", "category": "Manifest", "description": "Manifest contains `name`", "helpText": "The `name` property identifies your app and is required. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-name)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-background-color", "category": "Manifest", "description": "Manifest contains `background_color`", "helpText": "When your app launches from a user's homescreen, the browser uses `background_color` to paint the background of the browser while your app loads for a smooth transition experience. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-background_color)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-theme-color", "category": "Manifest", "description": "Manifest contains `theme_color`", "helpText": "Add a `theme_color` to set the color of the browser's address bar. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-theme_color)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-icons-min-192", "category": "Manifest", "description": "Manifest contains icons at least 192px", "helpText": "A 192px icon ensures that your app's icon displays well on the homescreens of the largest mobile devices. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-192px-icon)." } ] }, { "overall": 0, "name": "Address bar matches brand colors", "description": "The browser address bar can be themed to match your site. A `theme-color` [meta tag](https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android) will upgrade the address bar when a user browses the site, and the [manifest theme-color](https://developers.google.com/web/updates/2015/08/using-manifest-to-set-sitewide-theme-color) will apply the same theme site-wide once it's been added to homescreen.", "subItems": [ { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-exists", "category": "Manifest", "description": "Manifest exists", "helpText": "The web app manifest is the technology that enables users to add your web app to their homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-exists)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "theme-color-meta", "category": "HTML", "description": "Has a `<meta name=\"theme-color\">` tag" }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-theme-color", "category": "Manifest", "description": "Manifest contains `theme_color`", "helpText": "Add a `theme_color` to set the color of the browser's address bar. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-theme_color)." } ] }, { "overall": 1, "name": "Design is mobile-friendly", "description": "Users increasingly experience your app on mobile devices, so it's important to ensure that the experience can adapt to smaller screens.", "subItems": [ { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "viewport", "category": "Mobile Friendly", "description": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`", "helpText": "Add a viewport meta tag to optimize your app for mobile screens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/has-viewport-meta-tag)." }, { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "content-width", "category": "Mobile Friendly", "description": "Content is sized correctly for the viewport", "helpText": "If the width of your app's content doesn't match the width of the viewport, your app might not be optimized for mobile screens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/content-sized-correctly-for-viewport)." } ] } ] }, { "name": "Best Practices", "description": "We've compiled some recommendations for modernizing your web app and avoiding performance pitfalls. These audits do not affect your score but are worth a look.", "scored": false, "total": null, "categorizable": true, "score": [ { "overall": 1, "name": "Using modern offline features", "subItems": [ { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "appcache-manifest", "category": "Offline", "description": "Avoids Application Cache", "helpText": "Application Cache has been [deprecated](https://html.spec.whatwg.org/multipage/browsers.html#offline) by [Service Workers](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers). Consider implementing an offline solution using the [Cache Storage API](https://developer.mozilla.org/en-US/docs/Web/API/Cache)." }, { "score": true, "displayValue": "", "rawValue": true, "debugString": "", "name": "no-websql", "category": "Offline", "description": "Avoids WebSQL DB", "helpText": "Web SQL is deprecated. Consider using IndexedDB instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/web-sql)." } ] }, { "overall": 0.5, "name": "Using modern protocols", "subItems": [ { "score": false, "displayValue": "2 insecure requests found", "rawValue": false, "extendedInfo": { "formatter": "urllist", "value": [ { "url": "aadgmnobpdmgmigaicncghmmoeflnamj/ng-inspector.js" }, { "url": "gppongmhjkpfnbhagpmjfkannfbllamg/…js/inject.js" } ] }, "name": "is-on-https", "category": "Security", "description": "Uses HTTPS", "helpText": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "protocol": "Protocol" } } }, "name": "uses-http2", "category": "Performance", "description": "Uses HTTP/2 for its own resources", "helpText": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http2)." } ] }, { "overall": 0, "name": "Using modern CSS features", "subItems": [ { "score": false, "displayValue": "", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…css/material.css", "location": "43122:43142", "startLine": 0, "pre": ".mdl-badge[data-badge]:after {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "43163:43183", "startLine": 0, "pre": ".mdl-badge[data-badge]:after {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "49963:49983", "startLine": 0, "pre": ".mdl-card {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "50004:50024", "startLine": 0, "pre": ".mdl-card {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "50693:50713", "startLine": 0, "pre": ".mdl-card__title {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "50734:50754", "startLine": 0, "pre": ".mdl-card__title {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "51291:51311", "startLine": 0, "pre": ".mdl-card__title-text {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "51332:51352", "startLine": 0, "pre": ".mdl-card__title-text {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "67033:67053", "startLine": 0, "pre": ".mdl-mini-footer {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "67074:67094", "startLine": 0, "pre": ".mdl-mini-footer {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "67514:67534", "startLine": 0, "pre": ".mdl-mini-footer--link-list,.mdl-mini-footer__link-list {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "67555:67575", "startLine": 0, "pre": ".mdl-mini-footer--link-list,.mdl-mini-footer__link-list {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "77471:77491", "startLine": 0, "pre": ".mdl-navigation {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "77512:77532", "startLine": 0, "pre": ".mdl-navigation {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "77770:77790", "startLine": 0, "pre": ".mdl-layout {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "77811:77831", "startLine": 0, "pre": ".mdl-layout {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "78601:78621", "startLine": 0, "pre": ".mdl-layout__drawer {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "78642:78662", "startLine": 0, "pre": ".mdl-layout__drawer {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "81746:81766", "startLine": 0, "pre": ".mdl-layout__header {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "81787:81807", "startLine": 0, "pre": ".mdl-layout__header {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "83753:83773", "startLine": 0, "pre": ".mdl-layout--fixed-header>.mdl-layout__header {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "83794:83814", "startLine": 0, "pre": ".mdl-layout--fixed-header>.mdl-layout__header {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "84268:84288", "startLine": 0, "pre": ".mdl-layout__header-row {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "84309:84329", "startLine": 0, "pre": ".mdl-layout__header-row {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "86841:86861", "startLine": 0, "pre": ".mdl-layout__tab-bar {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "86882:86902", "startLine": 0, "pre": ".mdl-layout__tab-bar {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "99416:99436", "startLine": 0, "pre": ".mdl-slider__container {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "99457:99477", "startLine": 0, "pre": ".mdl-slider__container {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "99753:99773", "startLine": 0, "pre": ".mdl-slider__background-flex {\n display:-webkit-box;\n}" }, { "url": "…css/material.css", "location": "99794:99814", "startLine": 0, "pre": ".mdl-slider__background-flex {\n display:-ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 734, "pre": ".mdl-tabs__tab-bar {\n display: -webkit-box;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 736, "pre": ".mdl-tabs__tab-bar {\n display: -ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 1698, "pre": ".mdl-grid {\n display: -webkit-box;\n}" }, { "url": "…css/material.css", "location": "2:23", "startLine": 1700, "pre": ".mdl-grid {\n display: -ms-flexbox;\n}" }, { "url": "…css/material.css", "location": "43196:43226", "startLine": 0, "pre": ".mdl-badge[data-badge]:after {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "50037:50065", "startLine": 0, "pre": ".mdl-card {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "51945:51964", "startLine": 0, "pre": ".mdl-card--expand {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "77844:77872", "startLine": 0, "pre": ".mdl-layout {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "78509:78528", "startLine": 0, "pre": ".mdl-layout-spacer {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "78675:78703", "startLine": 0, "pre": ".mdl-layout__drawer {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "80050:80078", "startLine": 0, "pre": ".mdl-layout__drawer .mdl-navigation {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "81820:81848", "startLine": 0, "pre": ".mdl-layout__header {\n -webkit-box-orient:vertical;\n}" }, { "url": "…css/material.css", "location": "84342:84372", "startLine": 0, "pre": ".mdl-layout__header-row {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "85139:85169", "startLine": 0, "pre": ".mdl-layout__header-row .mdl-navigation {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "86281:86300", "startLine": 0, "pre": ".mdl-layout__content {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "87339:87358", "startLine": 0, "pre": ".mdl-layout__tab-bar-container {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "88314:88333", "startLine": 0, "pre": ".mdl-layout__tab {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "88742:88761", "startLine": 0, "pre": ".mdl-layout--fixed-tabs .mdl-layout__tab {\n -webkit-box-flex:1;\n}" }, { "url": "…css/material.css", "location": "99490:99520", "startLine": 0, "pre": ".mdl-slider__container {\n -webkit-box-orient:horizontal;\n}" }, { "url": "…css/material.css", "location": "100015:100034", "startLine": 0, "pre": ".mdl-slider__background-lower {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "100163:100182", "startLine": 0, "pre": ".mdl-slider__background-upper {\n -webkit-box-flex:0;\n}" }, { "url": "…css/material.css", "location": "2:33", "startLine": 738, "pre": ".mdl-tabs__tab-bar {\n -webkit-box-orient: horizontal;\n}" } ], "tableHeadings": { "url": "URL", "startLine": "Line in the stylesheet / <style>", "location": "Column start/end", "pre": "Snippet" } } }, "name": "no-old-flexbox", "category": "CSS", "description": "Avoids old CSS flexbox", "helpText": "The 2009 spec of Flexbox is deprecated and is 2.3x slower than the latest spec. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/old-flexbox)." } ] }, { "overall": 1, "name": "Using modern JavaScript features", "subItems": [ { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "type": "Type", "pre": "Snippet" } } }, "name": "uses-passive-event-listeners", "category": "JavaScript", "description": "Uses passive listeners to improve scrolling performance", "helpText": "Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/passive-event-listeners)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "type": "Event", "code": "Snippet" } } }, "name": "no-mutation-events", "category": "JavaScript", "description": "Avoids Mutation Events in its own scripts", "helpText": "Mutation Events are deprecated and harm performance. Consider using Mutation Observers instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/mutation-events)." } ] }, { "overall": 1, "name": "Avoiding APIs that harm the user experience", "subItems": [ { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "no-document-write", "category": "Performance", "description": "Avoids `document.write()`", "helpText": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/document-write)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "external-anchors-use-rel-noopener", "category": "Performance", "description": "Opens external anchors using rel=\"noopener\"", "helpText": "Open new tabs using `rel=\"noopener\"` to improve performance and prevent security vulnerabilities. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/noopener)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "geolocation-on-start", "category": "UX", "description": "Avoids requesting the geolocation permission on page load", "helpText": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/geolocation-on-load)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "notification-on-start", "category": "UX", "description": "Avoids requesting the notification permission on page load", "helpText": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/notifications-on-load)." } ] }, { "overall": 1, "name": "Avoiding deprecated APIs and browser interventions", "subItems": [ { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "urllist", "value": [] }, "name": "deprecations", "category": "Deprecations", "description": "Avoids deprecated APIs", "helpText": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://www.chromestatus.com/features#deprecated)." } ] }, { "overall": 0.875, "name": "Accessibility", "subItems": [ { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-allowed-attr", "category": "Accessibility", "description": "Element aria-* attributes are allowed for this role", "helpText": "Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/aria-allowed-attributes)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-required-attr", "category": "Accessibility", "description": "Elements with ARIA roles have the required aria-* attributes", "helpText": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/required-aria-attributes)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-valid-attr", "category": "Accessibility", "description": "Element aria-* attributes are valid and not misspelled or non-existent.", "helpText": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/valid-aria-attributes)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "aria-valid-attr-value", "category": "Accessibility", "description": "Element aria-* attributes have valid values", "helpText": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/valid-aria-values)." }, { "score": false, "displayValue": "", "rawValue": false, "extendedInfo": { "formatter": "accessibility", "value": { "description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds", "help": "Elements must have sufficient color contrast", "helpUrl": "https://dequeuniversity.com/rules/axe/2.1/color-contrast?application=axeAPI", "id": "color-contrast", "impact": "critical", "nodes": [ { "all": [], "any": [ { "data": { "bgColor": "#ffffff", "contrastRatio": "2.12", "fgColor": "#b2b776", "fontSize": "14.4pt", "fontWeight": "normal" }, "id": "color-contrast", "impact": "critical", "message": "Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "relatedNodes": [] } ], "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "html": "<span class=\"mu-an\">黄野</span>", "impact": "critical", "none": [], "target": [ "body > .wrapper > .sidebar > .name > span:nth-of-type(1)" ] }, { "all": [], "any": [ { "data": { "bgColor": "#ffffff", "contrastRatio": "2.12", "fgColor": "#b2b776", "fontSize": "14.4pt", "fontWeight": "normal" }, "id": "color-contrast", "impact": "critical", "message": "Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "relatedNodes": [] } ], "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "html": "<span class=\"mu-an\">Crab</span>", "impact": "critical", "none": [], "target": [ "body > .wrapper > .sidebar > .name > span:nth-of-type(2)" ] }, { "all": [], "any": [ { "data": { "bgColor": "#ffffff", "contrastRatio": "2.12", "fgColor": "#b2b776", "fontSize": "14.4pt", "fontWeight": "normal" }, "id": "color-contrast", "impact": "critical", "message": "Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "relatedNodes": [] } ], "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.12 (foreground color: #b2b776, background color: #ffffff, font size: 14.4pt, font weight: normal)", "html": "<span class=\"mu-an\">Canon</span>", "impact": "critical", "none": [], "target": [ "body > .wrapper > .sidebar > .name > span:nth-of-type(3)" ] } ], "tags": [ "wcag2aa", "wcag143" ] } }, "name": "color-contrast", "category": "Accessibility", "description": "Background and foreground colors have a sufficient contrast ratio", "helpText": "Low-contrast text is difficult or impossible for many users to read. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/contrast-ratio)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "image-alt", "category": "Accessibility", "description": "Every image element has an alt attribute", "helpText": "Screen reader users rely on `alt` text to provide descriptions of images. It's also used as fallback content when an image fails to load. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/alt-attribute)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "label", "category": "Accessibility", "description": "Every form element has a label", "helpText": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/form-labels)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "accessibility" }, "name": "tabindex", "category": "Accessibility", "description": "No element has a `tabindex` attribute greater than 0", "helpText": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/tabindex)." } ] }, { "overall": 0, "name": "Other", "subItems": [ { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-short-name-length", "category": "Manifest", "description": "Manifest's `short_name` won't be truncated when displayed on homescreen", "helpText": "Make your app's `short_name` less than 12 characters to ensure that it's not truncated on homescreens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-short_name-is-not-truncated)." }, { "score": false, "displayValue": "", "rawValue": false, "name": "manifest-display", "category": "Manifest", "description": "Manifest's `display` property is set", "helpText": "Set the `display` property to specify how your app launches from the homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-has-display-set)." } ] } ] }, { "name": "Performance", "description": "These encapsulate your app's performance.", "scored": false, "total": null, "categorizable": false, "score": [ { "overall": 0.625, "subItems": [ { "score": true, "displayValue": "Potential savings of 17 KB (~90ms)", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…homepage/fun-line.png", "preview": { "url": "https://yehuang.me/images/homepage/fun-line.png", "mimeType": "image/png" }, "totalBytes": 17888, "wastedBytes": 17732, "webpSavings": "17 KB _99%_", "wastedKb": "17 KB", "wastedMs": "90ms", "totalKb": "17 KB", "totalMs": "90ms", "potentialSavings": "17 KB _0%_" } ], "tableHeadings": { "preview": "", "url": "URL", "totalKb": "Original", "webpSavings": "WebP Savings", "jpegSavings": "JPEG Savings" } } }, "informative": true, "name": "uses-optimized-images", "category": "Images", "description": "Unoptimized images", "helpText": "Images should be optimized to save network bytes. The following images could have smaller file sizes when compressed with [WebP](https://developers.google.com/speed/webp/) or JPEG at 80 quality. [Learn more about image optimization](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/image-optimization)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "preview": "", "url": "URL", "totalKb": "Original", "potentialSavings": "Potential Savings" } } }, "informative": true, "name": "uses-responsive-images", "category": "Images", "description": "Oversized Images", "helpText": "Image sizes served should be based on the device display size to save network bytes. Learn more about [responsive images](https://developers.google.com/web/fundamentals/design-and-ui/media/images) and [client hints](https://developers.google.com/web/updates/2015/09/automating-resource-selection-with-client-hints)." }, { "score": false, "displayValue": "11", "rawValue": false, "optimalValue": 0, "extendedInfo": { "formatter": "criticalRequestChains", "value": { "62912.1": { "request": { "url": "https://yehuang.me/", "startTime": 30875.765972, "endTime": 30875.93157, "responseReceivedTime": 30875.924219, "transferSize": 2520 }, "children": { "62912.2": { "request": { "url": "https://fonts.googleapis.com/css?family=Cutive+Mono", "startTime": 30875.941743, "endTime": 30876.109673, "responseReceivedTime": 30876.103166, "transferSize": 425 }, "children": {} }, "62912.3": { "request": { "url": "https://fonts.googleapis.com/css?family=Economica&text=!MU-ANCHIOU", "startTime": 30875.942278, "endTime": 30876.115755, "responseReceivedTime": 30876.110132, "transferSize": 219 }, "children": {} }, "62912.4": { "request": { "url": "https://fonts.googleapis.com/icon?family=Material+Icons", "startTime": 30875.942945, "endTime": 30876.12142, "responseReceivedTime": 30876.117063, "transferSize": 355 }, "children": {} }, "62912.6": { "request": { "url": "https://yehuang.me/assets/css/syntax.css", "startTime": 30875.94391, "endTime": 30876.137956, "responseReceivedTime": 30876.131542, "transferSize": 745 }, "children": {} }, "62912.7": { "request": { "url": "https://yehuang.me/assets/css/main.css", "startTime": 30875.944406, "endTime": 30876.184335, "responseReceivedTime": 30876.138667, "transferSize": 2066 }, "children": {} }, "62912.9": { "request": { "url": "https://yehuang.me/assets/js/stuff.js", "startTime": 30875.945495, "endTime": 30876.232737, "responseReceivedTime": 30876.166228, "transferSize": 3869 }, "children": {} }, "62912.10": { "request": { "url": "https://yehuang.me/assets/js/material.min.js", "startTime": 30875.945988, "endTime": 30876.367848, "responseReceivedTime": 30876.169328, "transferSize": 12686 }, "children": {} }, "62912.5": { "request": { "url": "https://yehuang.me/assets/css/material.css", "startTime": 30875.943475, "endTime": 30876.427602, "responseReceivedTime": 30876.124417, "transferSize": 21158 }, "children": {} }, "62912.8": { "request": { "url": "https://yehuang.me/assets/js/search.min.js", "startTime": 30875.944907, "endTime": 30876.575522, "responseReceivedTime": 30876.16333, "transferSize": 50369 }, "children": { "62912.23": { "request": { "url": "https://fonts.gstatic.com/l/font?kit=moxe3LED6tpJEJY6zBmQ1rYAFEb4Vls3XwWXPPvTajI&skey=787fcf9775092ba7&v=v4", "startTime": 30876.635833, "endTime": 30876.824221, "responseReceivedTime": 30876.818037, "transferSize": 1116 }, "children": {} }, "62912.22": { "request": { "url": "https://fonts.gstatic.com/s/cutivemono/v5/N5odNRruTwjvCM8y77PhQYgp9Q8gbYrhqGlRav_IXfk.woff2", "startTime": 30876.63482, "endTime": 30876.97557, "responseReceivedTime": 30876.804079, "transferSize": 12599 }, "children": {} }, "62912.26": { "request": { "url": "https://yehuang.me/images/homepage/fun-line.png", "startTime": 30876.637, "endTime": 30877.004122, "responseReceivedTime": 30876.82509, "transferSize": 18016 }, "children": {} } } } } } } }, "informative": true, "name": "critical-request-chains", "category": "Performance", "description": "Critical Request Chains", "helpText": "The Critical Request Chains below show you what resources are required for first render of this page. Improve page load by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/critical-request-chains)." }, { "score": false, "displayValue": "6 resources delayed first paint by 124ms", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "/css", "totalKb": "0 KB", "totalMs": "77ms" }, { "url": "/css", "totalKb": "0 KB", "totalMs": "77ms" }, { "url": "/icon", "totalKb": "0 KB", "totalMs": "101ms" }, { "url": "…css/material.css", "totalKb": "21 KB", "totalMs": "124ms" }, { "url": "…css/syntax.css", "totalKb": "1 KB", "totalMs": "113ms" }, { "url": "…css/main.css", "totalKb": "2 KB", "totalMs": "76ms" } ], "tableHeadings": { "url": "URL", "totalKb": "Size (KB)", "totalMs": "Delayed Paint By (ms)" } } }, "informative": true, "name": "link-blocking-first-paint", "category": "Performance", "description": "Render-blocking Stylesheets", "helpText": "Link elements are blocking the first paint of your page. Consider inlining critical links and deferring non-critical ones. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/blocking-resources)." }, { "score": false, "displayValue": "3 resources delayed first paint by 121ms", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…js/search.min.js", "totalKb": "49 KB", "totalMs": "101ms" }, { "url": "…js/stuff.js", "totalKb": "4 KB", "totalMs": "119ms" }, { "url": "…js/material.min.js", "totalKb": "12 KB", "totalMs": "121ms" } ], "tableHeadings": { "url": "URL", "totalKb": "Size (KB)", "totalMs": "Delayed Paint By (ms)" } } }, "informative": true, "name": "script-blocking-first-paint", "category": "Performance", "description": "Render-blocking scripts", "helpText": "Script elements are blocking the first paint of your page. Consider inlining critical scripts and deferring non-critical ones. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/blocking-resources)." }, { "score": 100, "displayValue": "Total size was 139 KB", "rawValue": 142462, "optimalValue": "1,600 KB", "extendedInfo": { "formatter": "table", "value": { "results": [ { "url": "…js/search.min.js", "totalBytes": 50369, "totalKb": "49 KB", "totalMs": "250ms" }, { "url": "…css/material.css", "totalBytes": 21158, "totalKb": "21 KB", "totalMs": "110ms" }, { "url": "…homepage/fun-line.png", "totalBytes": 18016, "totalKb": "18 KB", "totalMs": "90ms" }, { "url": "/ga.js", "totalBytes": 16181, "totalKb": "16 KB", "totalMs": "80ms" }, { "url": "…js/material.min.js", "totalBytes": 12686, "totalKb": "12 KB", "totalMs": "60ms" }, { "url": "…v5/N5odNRruTwjvCM8y77PhQYgp9Q8gbYrhqGlRav_IXfk.woff2", "totalBytes": 12599, "totalKb": "12 KB", "totalMs": "60ms" }, { "url": "…js/stuff.js", "totalBytes": 3869, "totalKb": "4 KB", "totalMs": "20ms" }, { "url": "/", "totalBytes": 2520, "totalKb": "2 KB", "totalMs": "10ms" }, { "url": "…css/main.css", "totalBytes": 2066, "totalKb": "2 KB", "totalMs": "10ms" }, { "url": "…l/font?kit=…", "totalBytes": 1116, "totalKb": "1 KB", "totalMs": "10ms" } ], "tableHeadings": { "url": "URL", "totalKb": "Total Size", "totalMs": "Transfer Time" } } }, "informative": true, "name": "total-byte-weight", "category": "Network", "description": "Avoids enormous network payloads", "helpText": "Network transfer size [costs users real dollars](https://whatdoesmysitecost.com/) and is [highly correlated](http://httparchive.org/interesting.php#onLoad) with long load times. Try to find ways to reduce the size of required files." }, { "score": 100, "displayValue": "169 nodes", "rawValue": 169, "optimalValue": "1,500 nodes", "extendedInfo": { "formatter": "card", "value": [ { "title": "Total DOM Nodes", "value": "169", "target": "< 1,500 nodes" }, { "title": "DOM Depth", "value": "8", "snippet": "html.mdl-js >\n body >\n div.wrapper >\n div.sidebar >\n div.sidebar-menu >\n div.sidebar-blogs >\n span >\n a", "target": "< 32" }, { "title": "Maximum Children", "value": "23", "snippet": "Element with most children:\nhead", "target": "< 60 nodes" } ] }, "name": "dom-size", "category": "Performance", "description": "Avoids an excessive DOM size", "helpText": "Browser engineers recommend pages contain fewer than ~1,500 DOM nodes. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://developers.google.com/web/fundamentals/performance/rendering/)." }, { "score": true, "displayValue": "0", "rawValue": true, "extendedInfo": { "formatter": "userTimings", "value": [] }, "informative": true, "name": "user-timings", "category": "Performance", "description": "User Timing marks and measures", "helpText": "Consider instrumenting your app with the User Timing API to create custom, real-world measurements of key user experiences. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/user-timing)." } ] } ] }, { "name": "Fancier stuff", "description": "A list of newer features that you could be using in your app. These audits do not affect your score and are just suggestions.", "scored": false, "additional": true, "total": null, "categorizable": true, "score": [ { "overall": 0.5, "name": "New JavaScript features", "subItems": [ { "score": false, "displayValue": "", "rawValue": false, "extendedInfo": { "formatter": "table", "value": { "results": [ { "args": [], "col": 25187, "isEval": false, "isExtension": false, "line": 25, "url": "https://yehuang.me/assets/js/search.min.js" }, { "args": [], "col": 3336, "isEval": false, "isExtension": false, "line": 25, "url": "https://yehuang.me/assets/js/search.min.js" } ], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "isEval": "Eval'd?" } } }, "name": "no-datenow", "category": "JavaScript", "description": "Avoids `Date.now()` in its own scripts", "helpText": "Consider using `performance.now()` from the User Timing API instead. It provides high-precision timestamps, independent of the system clock. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/date-now)." }, { "score": true, "displayValue": "", "rawValue": true, "extendedInfo": { "formatter": "table", "value": { "results": [], "tableHeadings": { "url": "URL", "lineCol": "Line/Col", "isEval": "Eval'd?" } } }, "name": "no-console-time", "category": "JavaScript", "description": "Avoids `console.time()` in its own scripts", "helpText": "Consider using `performance.mark()` and `performance.measure()` from the User Timing API instead. They provide high-precision timestamps, independent of the system clock, and are integrated in the Chrome DevTools Timeline. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/console-time)." } ] } ] } ] }