Lighthouse Desktop
· 0 checks — Desktop Lighthouse audit -- Performance, Accessibility, Best Practices, and SEO category breakdown.Detailed Report
Audit breakdown by category with detailed findings.
Performance
Insights
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Performance issues directly impact user engagement and conversion rates.
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img | /resources/mxj_panel/2026/20260407210900_2026-スプリ... | 124.9 KiB | 119.3 KiB |
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img | /resources/mxj_panel/2026/20260324024445_MxJ exposure-354... | 115.6 KiB | 110.1 KiB |
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img | /resources/mxj_panel/2026/20260217031009_MxJ exposure-354... | 100.0 KiB | 94.5 KiB |
WritingContest div#headerSmall > div.banner-header-anime-straming > a.ga-click > img.ga-impression | cdn.myanimelist.net/resources/mb/mini_banner_20260217_writing_contest.png | 16.6 KiB | 15.1 KiB |
PV 1
play div.widget-slide-outer > ul.widget-slide > li.btn-anime > a.iframe | myanimelist.net/images/anime/12/76049.webp | 21.6 KiB | 9.8 KiB |
PV 1
play div.widget-slide-outer > ul.widget-slide > li.btn-anime > a.iframe | myanimelist.net/images/anime/10/47347.webp | 21.3 KiB | 8.5 KiB |
YSRTM 2026 ul#nav > li.ysrtm-2026 > a.pt0 > img | myanimelist.net/images/event/20240226_YSRTM_2024/badge.png?v=17139276 | 8.6 KiB | 7.5 KiB |
Google Play div.footer-link-icon-block > div.footer-app > a.app-button > img | myanimelist.net/images/appli/badge_googleplay.png | 7.7 KiB | 7.2 KiB |
Yomi no Tsugai ul.widget-slide > li.btn-anime > a.link > img.lazyloaded | /r/160x220/images/anime/1171/156397.webp?s=a67f89fd0961e4... | 12.7 KiB | 7.0 KiB |
Tensei shitara Slime Datta Ken 4th Season ul.widget-slide > li.btn-anime > a.link > img.lazyloaded | /r/160x220/images/anime/1695/156389.webp?s=8d373d17a84ee8... | 11.1 KiB | 5.3 KiB |
Tongari Boushi no Atelier ul.widget-slide > li.btn-anime > a.link > img.lazyloaded | /r/160x220/images/anime/1726/155542.webp?s=d46fe7db7a109a... | 10.9 KiB | 5.1 KiB |
Re:Zero kara Hajimeru Isekai Seikatsu 4th Season ul.widget-slide > li.btn-anime > a.link > img.lazyloaded | /r/160x220/images/anime/1540/155824.webp?s=6280050d8e1297... | 10.1 KiB | 4.4 KiB |
InuYasha ul.widget-slide > li.btn-anime > div.link > img.lazyloaded | /r/108x163/images/anime/1589/95329.webp?s=eea32082370b30c... | 7.1 KiB | 4.2 KiB |
Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou 2nd Season ul.widget-slide > li.btn-anime > div.link > img.lazyloaded | /r/108x163/images/anime/1297/150516.webp?s=67334e84b379fb... | 6.9 KiB | 4.0 KiB |
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
| URL | Protocol |
|---|---|
| /resources/mxj_panel/2026/20260217031009_MxJ exposure-354... | http/1.1 |
| /resources/mxj_panel/2026/20260407210900_2026-スプリ... | http/1.1 |
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| myanimelist.net/js/cmp.js?v=1776808828 | 1.1 KiB | |
| myanimelist.net/js/quantcast_choice.js?v=1776808828 | 2.8 KiB | |
| fonts.googleapis.com/css?family=Roboto:400,700&display=swap | 2.0 KiB | 204 ms |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| myanimelist.net/ | 733 ms |
These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS
Performance issues directly impact user engagement and conversion rates.
| Element | Layout shift score |
|---|---|
Welcome to MyAnimeList.net!
Visit MALxJapan
MALxJapan -More than just anime-
My… body.page-common > div#myanimelist > div.wrapper > div#contentWrapper | 0.370 |
We value your privacy
We and our partners store and/or access information on a … div#qc-cmp2-container > div#qc-cmp2-main > div.qc-cmp-cleanslate > div#qc-cmp2-ui | 0.006 |
More
Top Upcoming Anime
1
add
Youjo Senki II
TV, 0 eps, scored N/A
200,084 me… div#contentWrapper > div#content > div.right-column > article.widget-container | 0.003 |
div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side | 0.000 |
div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side | 0.000 |
div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side | 0.000 |
div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side | 0.000 |
div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side | 0.000 |
div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side div.widget > div.widget-content > div#widget-seasonal-video > div.btn-widget-slide-side | 0.000 |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Diagnostics
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| myanimelist.net/static/assets/css/pc/dark-711b3b1a26.css | 190.4 KiB | 189.9 KiB |
| myanimelist.net/static/assets/css/pc/style-6f150e4d4a.css | 192.2 KiB | 187.1 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| myanimelist.net/static/assets/js/pc/all-96bd52aeae.js | 376.1 KiB | 253.0 KiB |
| www.gstatic.com/recaptcha/releases/gTpTIWhbKpxADzTzkcabhXN4/recaptcha__en.js | 361.8 KiB | 177.0 KiB |
| cmp.inmobi.com/tcfv2/cmp2.js?referer=myanimelist.net | 133.0 KiB | 66.0 KiB |
| cmp.inmobi.com/tcfv2/61/cmp2ui-en.js | 124.8 KiB | 59.8 KiB |
| www.googletagmanager.com/gtag/js?id=G-26FEP9527K&cx=c>m=4e64h1h1 | 173.4 KiB | 59.7 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-WL4QW3G | 138.0 KiB | 58.9 KiB |
| myanimelist.net/static/assets/js/pc/header-aeab8bb434.js | 92.8 KiB | 54.9 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| myanimelist.net/static/assets/js/pc/all-96bd52aeae.js | 449 ms | 158 ms | 51 ms |
| myanimelist.net/ | 318 ms | 4.4 ms | 2.0 ms |
| www.gstatic.com/recaptcha/releases/gTpTIWhbKpxADzTzkcabhXN4/recaptcha__en.js | 302 ms | 252 ms | 31 ms |
| cmp.inmobi.com/tcfv2/cmp2.js?referer=myanimelist.net | 258 ms | 169 ms | 19 ms |
| www.googletagmanager.com/gtag/js?id=G-26FEP9527K&cx=c>m=4e64h1h1 | 250 ms | 230 ms | 19 ms |
| www.googletagmanager.com/gtm.js?id=GTM-WL4QW3G | 212 ms | 194 ms | 14 ms |
| Unattributable | 205 ms | 2.4 ms | 0.0 ms |
| cmp.inmobi.com/tcfv2/61/cmp2ui-en.js | 159 ms | 94 ms | 19 ms |
| myanimelist.net/static/assets/js/pc/header-aeab8bb434.js | 142 ms | 112 ms | 9.9 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 1.3 s |
| Other | 506 ms |
| Style & Layout | 236 ms |
| Script Parsing & Compilation | 166 ms |
| Rendering | 116 ms |
| Parse HTML & CSS | 87 ms |
| Garbage Collection | 55 ms |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Google Play div.footer-link-icon-block > div.footer-app > a.app-button > img | myanimelist.net/images/appli/badge_googleplay.png |
App Store div.footer-link-icon-block > div.footer-app > a.app-button > img | myanimelist.net/images/appli/badge_iOS.png |
More information about the performance of your application. These numbers don't directly affect the Performance score.
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Names and labels
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#menu_right > div#top-search-bar > form#searchBar > button#topSearchButon div#menu_right > div#top-search-bar > form#searchBar > button#topSearchButon |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img |
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img |
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
Form elements without effective labels can create frustrating experiences for screen reader users. Learn more about the `select` element.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
All
Anime
Manga
Characters
People
Companies
Manga Store
News
Featured Articles
… div#top-search-bar > form#searchBar > div.form-select-outer > select#topSearchValue |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.wrapper > div.text-ribbon > div.ac > a.js-close-button div.wrapper > div.text-ribbon > div.ac > a.js-close-button |
div.news-list > div.news-unit > div.picSurround > a.image-link div.news-list > div.news-unit > div.picSurround > a.image-link |
div.news-list > div.news-unit > div.picSurround > a.image-link div.news-list > div.news-unit > div.picSurround > a.image-link |
div.news-list > div.news-unit > div.picSurround > a.image-link div.news-list > div.news-unit > div.picSurround > a.image-link |
div.news-list > div.news-unit > div.picSurround > a.image-link div.news-list > div.news-unit > div.picSurround > a.image-link |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Hide Ads div#headerSmall > div#header-menu > div.header-menu-login > a.btn-mal-service |
9 hours ago by Naitik7897 | Discuss (0 comments) div.news-unit > div.news-unit-right > div.information > p.info |
10 hours ago by Syureria | Discuss (0 comments) div.news-unit > div.news-unit-right > div.information > p.info |
Apr 17, 4:17 AM by Naitik7897 | Discuss (5 comments) div.news-unit > div.news-unit-right > div.information > p.info |
Apr 17, 3:23 AM by nirererin | Discuss (6 comments) div.news-unit > div.news-unit-right > div.information > p.info |
by zurame (25 replies) article.widget-container > div.widget > div.widget-content > p.lightLink |
by rohan121 (19 replies) article.widget-container > div.widget > div.widget-content > p.lightLink |
by RushingSugar (47 replies) article.widget-container > div.widget > div.widget-content > p.lightLink |
by deg (30 replies) article.widget-container > div.widget > div.widget-content > p.lightLink |
by MAL_editing_team div.news-unit > div.news-unit-right > div.information > p.info |
2,818 views div.news-unit > div.news-unit-right > div.information > p.di-tc |
2,818 div.news-unit-right > div.information > p.di-tc > b |
by MAL_editing_team div.news-unit > div.news-unit-right > div.information > p.info |
16,484 views div.news-unit > div.news-unit-right > div.information > p.di-tc |
16,484 div.news-unit-right > div.information > p.di-tc > b |
by MAL_editing_team div.news-unit > div.news-unit-right > div.information > p.info |
26,834 views div.news-unit > div.news-unit-right > div.information > p.di-tc |
26,834 div.news-unit-right > div.information > p.di-tc > b |
by MAL_editing_team div.news-unit > div.news-unit-right > div.information > p.info |
46,209 views div.news-unit > div.news-unit-right > div.information > p.di-tc |
46,209 div.news-unit-right > div.information > p.di-tc > b |
Overall Rating: 8 div.item > div.info > div.spaceit > span.fs10 |
58 minutes ago by AshParth div.widget-content > div.item > div.info > div.spaceit |
Overall Rating: 10 div.item > div.info > div.spaceit > span.fs10 |
1 hour ago by RickyGgG div.widget-content > div.item > div.info > div.spaceit |
Overall Rating: 8 div.item > div.info > div.spaceit > span.fs10 |
2 hours ago by nikqiv div.widget-content > div.item > div.info > div.spaceit |
Overall Rating: 6 div.item > div.info > div.spaceit > span.fs10 |
2 hours ago by Teramol div.widget-content > div.item > div.info > div.spaceit |
Anime rec by Oliver2085 - 2 hours ago div.widget > div.widget-content > div.spaceit > div.spaceit |
Anime rec by Ash_li - 4 hours ago div.widget > div.widget-content > div.spaceit > div.spaceit |
Anime rec by Ash_li - 4 hours ago div.widget > div.widget-content > div.spaceit > div.spaceit |
Anime rec by SgtBateMan - 5 hours ago div.widget > div.widget-content > div.spaceit > div.spaceit |
ONA, 0 eps, scored 9.15 ul > li.ranking-unit > div.data > span.info |
195,547 members ul > li.ranking-unit > div.data > span.members |
TV, 19 eps, scored 8.81 ul > li.ranking-unit > div.data > span.info |
194,897 members ul > li.ranking-unit > div.data > span.members |
TV, 0 eps, scored 8.73 ul > li.ranking-unit > div.data > span.info |
2,670,771 members ul > li.ranking-unit > div.data > span.members |
TV, 13 eps, scored 8.71 ul > li.ranking-unit > div.data > span.info |
209,942 members ul > li.ranking-unit > div.data > span.members |
TV, 0 eps, scored 8.61 ul > li.ranking-unit > div.data > span.info |
20,285 members ul > li.ranking-unit > div.data > span.members |
TV, 0 eps, scored N/A ul > li.ranking-unit > div.data > span.info |
200,084 members ul > li.ranking-unit > div.data > span.members |
TV, 0 eps, scored N/A ul > li.ranking-unit > div.data > span.info |
178,033 members ul > li.ranking-unit > div.data > span.members |
TV, 0 eps, scored N/A ul > li.ranking-unit > div.data > span.info |
114,479 members ul > li.ranking-unit > div.data > span.members |
Movie, 1 eps, scored N/A ul > li.ranking-unit > div.data > span.info |
110,488 members ul > li.ranking-unit > div.data > span.members |
TV, 0 eps, scored N/A ul > li.ranking-unit > div.data > span.info |
109,156 members ul > li.ranking-unit > div.data > span.members |
TV, 25 eps, scored 8.57 ul > li.ranking-unit > div.data > span.info |
4,348,208 members ul > li.ranking-unit > div.data > span.members |
TV, 37 eps, scored 8.62 ul > li.ranking-unit > div.data > span.info |
4,286,902 members ul > li.ranking-unit > div.data > span.members |
TV, 64 eps, scored 9.11 ul > li.ranking-unit > div.data > span.info |
3,673,355 members ul > li.ranking-unit > div.data > span.members |
TV, 12 eps, scored 8.48 ul > li.ranking-unit > div.data > span.info |
3,512,108 members ul > li.ranking-unit > div.data > span.members |
TV, 26 eps, scored 8.41 ul > li.ranking-unit > div.data > span.info |
3,437,043 members ul > li.ranking-unit > div.data > span.members |
TV, 13 eps, scored 7.83 ul > li.ranking-unit > div.data > span.info |
3,296,436 members ul > li.ranking-unit > div.data > span.members |
TV, 25 eps, scored 7.22 ul > li.ranking-unit > div.data > span.info |
3,293,348 members ul > li.ranking-unit > div.data > span.members |
TV, 148 eps, scored 9.03 ul > li.ranking-unit > div.data > span.info |
3,178,327 members ul > li.ranking-unit > div.data > span.members |
TV, 220 eps, scored 8.02 ul > li.ranking-unit > div.data > span.info |
3,109,549 members ul > li.ranking-unit > div.data > span.members |
10 div.ranking-digest > ul > li.ranking-unit > span.rank |
TV, 12 eps, scored 7.79 ul > li.ranking-unit > div.data > span.info |
3,049,540 members ul > li.ranking-unit > div.data > span.members |
MyAnimeList.net is a property of MyAnimeList Co., Ltd. ©2026 All Rights Reserve… body.page-common > footer > div#footer-block > div#copyright |
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of … body.page-common > footer > div#footer-block > div#recaptcha-terms |
Privacy Policy footer > div#footer-block > div#recaptcha-terms > a |
Terms of Service footer > div#footer-block > div#recaptcha-terms > a |
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
read more div.news-unit-right > div.text > p > a |
read more div.news-unit-right > div.text > p > a |
read more div.news-unit-right > div.text > p > a |
read more div.news-unit-right > div.text > p > a |
zurame div.widget > div.widget-content > p.lightLink > a |
rohan121 div.widget > div.widget-content > p.lightLink > a |
RushingSugar div.widget > div.widget-content > p.lightLink > a |
deg div.widget > div.widget-content > p.lightLink > a |
read more div.info > div.textReadability > p.reviews_p > a |
AshParth div.item > div.info > div.spaceit > a |
read more div.info > div.textReadability > p.reviews_p > a |
RickyGgG div.item > div.info > div.spaceit > a |
read more div.info > div.textReadability > p.reviews_p > a |
nikqiv div.item > div.info > div.spaceit > a |
read more div.info > div.textReadability > p.reviews_p > a |
Teramol div.item > div.info > div.spaceit > a |
Oliver2085 div.widget-content > div.spaceit > div.spaceit > a |
Ash_li div.widget-content > div.spaceit > div.spaceit > a |
Ash_li div.widget-content > div.spaceit > div.spaceit > a |
SgtBateMan div.widget-content > div.spaceit > div.spaceit > a |
These are opportunities to improve the legibility of your content.
Best practices
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.wrapper > div.text-ribbon > div.ac > a.js-close-button div.wrapper > div.text-ribbon > div.ac > a.js-close-button |
Your guide to 2026's Must-Read Manga is here! Try one for an exclusive badge (… div.wrapper > div.text-ribbon > div.ac > a.di-b |
Episode 1 li.btn-anime > div.link > div.title > a.di-b |
Sousou no Frieren 2nd Season li.btn-anime > span.external-link > h3.latest_updated_h3 > a |
Episode 26 li.btn-anime > div.link > div.title > a.di-b |
Episode 25 li.btn-anime > div.link > div.title > a.di-b |
InuYasha: Kanketsu-hen li.btn-anime > span.external-link > h3.latest_updated_h3 > a |
Episode 167 li.btn-anime > div.link > div.title > a.di-b |
Episode 166 li.btn-anime > div.link > div.title > a.di-b |
Episode 12 li.btn-anime > div.link > div.title > a.di-b |
Episode 11 li.btn-anime > div.link > div.title > a.di-b |
Yarinaoshi Reijou wa Ryuutei Heika wo Kouryakuchuu li.btn-anime > span.external-link > h3.latest_updated_h3 > a |
Episode 1 li.btn-anime > div.link > div.title > a.di-b |
Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou 2nd Season li.btn-anime > span.external-link > h3.latest_updated_h3 > a |
Episode 6 li.btn-anime > div.link > div.title > a.di-b |
Episode 5 li.btn-anime > div.link > div.title > a.di-b |
Fate/strange Fake li.btn-anime > span.external-link > h3.latest_updated_h3 > a |
Shingeki no Kyojin li.btn-anime > span.external-link > h3.promotional_videos_h3 > a |
Death Note li.btn-anime > span.external-link > h3.promotional_videos_h3 > a |
Fullmetal Alchemist: Brotherhood li.btn-anime > span.external-link > h3.promotional_videos_h3 > a |
One Punch Man li.btn-anime > span.external-link > h3.promotional_videos_h3 > a |
Naruto tr > td > h3.recommendations_h3 > a |
add tr > td > div.spaceit > a.Lightbox_AddEdit |
One Piece ul > li.ranking-unit > p.data-image > a.image |
Chiikawa ul > li.ranking-unit > p.data-image > a.image |
These items highlight common accessibility best practices.
Best Practices
Browser Compatibility
Specifying a doctype prevents the browser from switching to quirks-mode. Learn more about the doctype declaration.
Performance issues directly impact user engagement and conversion rates.
SEO
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Content Best Practices
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img |
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img |
a.ga-click > div.content > div.image > img a.ga-click > div.content > div.image > img |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
div.news-unit > div.picSurround > a.image-link > img.lazyloaded div.news-unit > div.picSurround > a.image-link > img.lazyloaded |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Crawling and Indexing
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
Copy body.page-common > div.mal-tipmenu > a.js-quickquote-copy |
To appear in search results, crawlers need access to your app.