Mobile 375 × 812

Desktop 1440 × 900

Score: 71 / 100
Based on 8 categories, 0 sections
Room to improve — your 5.5s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Solid infrastructure — fast server responses across the board.
Mostly compliant — a few items need attention.
Good content signals with minor gaps.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Cookie '7xkodguI' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie 'AmsJa8s2' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie 'McKa82ms' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie 'PHPSESS' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie 'Uas' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
High impact, low effort — start here.
High impact, requires investment.
Nothing in this quadrant — good news.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/53a9dd71-1fc2-47ef-bde7-308cddc4eb33)<a href="https://beavercheck.com/results/53a9dd71-1fc2-47ef-bde7-308cddc4eb33"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fpikabu.ru" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fpikabu.ruThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Addressing the critical issues below would have the most immediate impact on your user trust.
8 barrier(s) likely increasing bounce by ~29%.
Page takes 5.5s to load
+12% bounceUsers abandon at ~3s — you're 3.0s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 5.9s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
No structured data
+2% bounceNo rich-result eligibility in Google — lower SERP CTR vs competitors with stars and prices
Fix: Add JSON-LD for your page type (Product, Article, FAQPage, LocalBusiness, …)
9 link(s) with generic text ("click here", "read more")
+1% bounceScreen-reader users navigating by link list see no context — and search engines can't infer relevance
Fix: Rewrite with descriptive phrases that identify the destination
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
2 broken link(s) on the page
+3% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
₽8,750 investment → ₽91,950/month returns
₽8,750
2h · 5 findings
₽91,950 /mo
~₽1,103,395 / year
No applicable regulations in this jurisdiction
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
2.5 developer hours at ₽3500/hr
Based on Russia rates (₽3500/hr)
Start here for the best return on investment
₽72 / month at risk
~₽866 / year if left unfixed
₽72 /mo
9925.8 MB/mo × 7.273 RUB/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.71 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
5.47 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
5.92 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
7.13 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
23.95 s
Audit breakdown by category with detailed findings.
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
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
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.
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.
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 |
|---|---|---|
| cs.pikabu.ru/apps/ub/5.4.703/mobile/app.mo.css | 110.8 KiB | 1.4 s |
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.story__user-link > div.avatar > span.avatar__inner > span.avatar__default a.story__user-link > div.avatar > span.avatar__inner > span.avatar__default | cs.pikabu.ru/apps/ub/5.4.382/mobile/sprite_96dpi.webp | 129.4 KiB | 50.0 KiB |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img | cs18.pikabu.ru/s/2026/03/01/22/ikobc2ua.png | 30.4 KiB | 30.2 KiB |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img | cs16.pikabu.ru/s/2025/05/14/18/sfssj3vi.png | 27.9 KiB | 27.8 KiB |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img | cs14.pikabu.ru/images/community/380/1675482212393232191.png | 27.1 KiB | 26.9 KiB |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img | cs17.pikabu.ru/s/2025/10/29/20/sfsvknxc.png | 21.6 KiB | 21.4 KiB |
Транспорт div.app__content > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs17.pikabu.ru/s/2026/01/27/11/4exfldty.png | 21.4 KiB | 21.2 KiB |
Игры div.app__content > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs16.pikabu.ru/s/2026/01/27/11/firsjx67.png | 18.5 KiB | 18.3 KiB |
Кино и сериалы div.app__content > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs17.pikabu.ru/s/2026/01/27/11/zqzflcwr.png | 16.0 KiB | 15.8 KiB |
Животные div.app__content > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs16.pikabu.ru/s/2026/01/27/11/zezcihyp.png | 15.1 KiB | 14.9 KiB |
18+ div.app__content > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs19.pikabu.ru/s/2026/01/27/11/firuwmvl.png | 14.3 KiB | 14.1 KiB |
Спорт div.story__main > div.story__author-header > a.story__topic > img | cs17.pikabu.ru/s/2026/01/27/11/7evfk7uf.png | 14.1 KiB | 13.9 KiB |
Политика div.story__main > div.story__author-header > a.story__topic > img | cs18.pikabu.ru/s/2026/01/27/11/ieprdtli.png | 14.0 KiB | 13.8 KiB |
Юмор div.story__main > div.story__author-header > a.story__topic > img | cs20.pikabu.ru/s/2026/01/27/11/fir2xasm.png | 13.2 KiB | 13.0 KiB |
inko8gnito a.story__user-link > div.avatar > span.avatar__inner > img.image-lazy-processed | cs13.pikabu.ru/avatars/1619/m1619612-1874628524.png | 12.2 KiB | 12.0 KiB |
Отношения div.app__content > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs16.pikabu.ru/s/2026/01/27/11/cmtsikgi.png | 11.7 KiB | 11.5 KiB |
ZoVaDa a.story__user-link > div.avatar > span.avatar__inner > img.image-lazy-processed | cs13.pikabu.ru/avatars/7827/m7827516-1460492533.png | 10.6 KiB | 10.4 KiB |
div.story-block > div > div.pkb-player__player--tThGUzxl > div.pkb-player-block__preview--Ta5pXYyN div.story-block > div > div.pkb-player__player--tThGUzxl > div.pkb-player-block__preview--Ta5pXYyN | cs17.pikabu.ru/s/2026/04/22/09/krdexqf7_s0f0d9m0_460x648p.jpg | 58.3 KiB | 9.8 KiB |
div.story-block > div > div.pkb-player__player--tThGUzxl > div.pkb-player-block__preview--Ta5pXYyN div.story-block > div > div.pkb-player__player--tThGUzxl > div.pkb-player-block__preview--Ta5pXYyN | cs16.pikabu.ru/s/2026/04/22/09/fgqh2bli_s0f0d10m0_460x308p.jpg | 31.7 KiB | 8.7 KiB |
Вредные советы div.story-image > div.story-image__content > a.image-link > img.story-image__image | cs17.pikabu.ru/s/2026/04/22/11/22cex3lj.webp | 64.3 KiB | 7.7 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
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.
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.
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 |
|---|---|---|
| cs.pikabu.ru/apps/ub/5.4.703/mobile/app.mo.css | 110.2 KiB | 99.8 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 |
|---|---|---|---|
| pikabu.ru/.well-known/ddos-guard/check | 5.5 s | 1.5 s | 35 ms |
| pikabu.ru/ | 2.7 s | 153 ms | 31 ms |
| Unattributable | 2.1 s | 535 ms | 0.0 ms |
| cs.pikabu.ru/apps/ub/5.4.700/mobile/vendors.edb3f6438953.mo.js | 1.7 s | 1.1 s | 135 ms |
| cs.pikabu.ru/apps/ub/5.4.703/mobile/app.a00e5602742c.mo.js | 997 ms | 663 ms | 202 ms |
| cs.pikabu.ru/apps/ub/5.4.703/mobile/ui.16cfa80c1f17.mo.js | 859 ms | 783 ms | 64 ms |
| yandex.ru/ads/system/context.js | 576 ms | 407 ms | 42 ms |
| www.googletagmanager.com/gtag/js?id=G-GDRZR2E90Y | 405 ms | 351 ms | 51 ms |
| privacy-cs.mail.ru/static/sync-loader.js | 356 ms | 302 ms | 19 ms |
| mc.yandex.ru/metrika/tag.js | 320 ms | 277 ms | 26 ms |
| yandex.ru/ads/system/header-bidding.js | 279 ms | 184 ms | 13 ms |
| yastatic.net/partner-code-bundles/1304651/00cc0164cd639ddf.js | 196 ms | 130 ms | 65 ms |
| top-fwz1.mail.ru/js/code.js | 166 ms | 102 ms | 14 ms |
| cs.pikabu.ru/apps/ub/5.4.703/mobile/app.mo.css | 110 ms | 0.0 ms | 0.0 ms |
| yandex.ru/ads/system/adsdk.js | 72 ms | 57 ms | 14 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 | 6.7 s |
| Style & Layout | 5.5 s |
| Other | 2.5 s |
| Script Parsing & Compilation | 765 ms |
| Rendering | 483 ms |
| Parse HTML & CSS | 357 ms |
| Garbage Collection | 186 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
| Pages with WebSocket cannot enter back/forward cache. | Pending browser support |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| cs.pikabu.ru/apps/ub/5.4.703/mobile/app.a00e5602742c.mo.js | 375.1 KiB | 275.2 KiB |
| cs.pikabu.ru/apps/ub/5.4.700/mobile/vendors.edb3f6438953.mo.js | 346.0 KiB | 250.3 KiB |
| cs.pikabu.ru/apps/ub/5.4.703/mobile/ui.16cfa80c1f17.mo.js | 146.7 KiB | 128.2 KiB |
| yastatic.net/partner-code-bundles/1304651/00cc0164cd639ddf.js | 129.7 KiB | 102.9 KiB |
| www.googletagmanager.com/gtag/js?id=G-GDRZR2E90Y | 175.9 KiB | 68.0 KiB |
| yandex.ru/ads/system/context.js | 103.8 KiB | 61.7 KiB |
| pikabu.ru/.well-known/ddos-guard/check | 176.8 KiB | 51.8 KiB |
| mc.yandex.ru/metrika/tag.js | 84.7 KiB | 44.1 KiB |
| cs.pikabu.ru/apps/ub/5.4.621/mobile/vendors-editor.626cedc51779.mo.js | 40.1 KiB | 40.1 KiB |
| yastatic.net/partner-code-bundles/1304651/22d10f9d8e892aab.js | 31.8 KiB | 27.1 KiB |
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.
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. Learn more about prohibited ARIA roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Закрыть div.app__content > div#smart-banner > div.smartbanner > a.smartbanner__exit |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Низкий рейтинг div.story__footer > div.story__footer-tools > div.story__footer-rating > div.story__rating-block |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Команда Пикабу div.story__author-header > div.story__user-info-group > div.story__user-labels > span.user__label |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
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 |
|---|
header.header > div.header__inner > div.header__mobile > button.header__menu header.header > div.header__inner > div.header__mobile > button.header__menu |
div.app > div.app__content > section.info-banner > button.button_link div.app > div.app__content > section.info-banner > button.button_link |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
div.story__main > div.story__author-panel > div.subscribe-btn__wrapper--HZJXdLAP > button.pkb-btn__host--n2MGeea1 div.story__main > div.story__author-panel > div.subscribe-btn__wrapper--HZJXdLAP > button.pkb-btn__host--n2MGeea1 |
article.story > div.story__main > header.story__header > button.dots-menu article.story > div.story__main > header.story__header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool div.story__footer > div.story__footer-tools > div.story__footer-tools-inner > button.tool |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-up |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down div.story__footer-tools > div.story__footer-rating > div.story__rating-block > button.story__rating-down |
article.story > div.story__main > div.story__author-header > button.dots-menu article.story > div.story__main > div.story__author-header > button.dots-menu |
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 |
|---|
div.app > div.app__content > div.promo-banner > img div.app > div.app__content > div.promo-banner > img |
div.app > div.app__content > div.promo-banner > img.promo-banner__image div.app > div.app__content > div.promo-banner > img.promo-banner__image |
div.app > div.app__content > div.promo-banner > img.promo-banner__image div.app > div.app__content > div.promo-banner > img.promo-banner__image |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
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.header__mobile > div.header__content > div.header__app-link-wrapper > a.button div.header__mobile > div.header__content > div.header__app-link-wrapper > a.button |
div.story-block > figure.story-image > div.story-image__content > a.image-link div.story-block > figure.story-image > div.story-image__content > a.image-link |
div.story-block > figure.story-image > div.story-image__content > a.image-link div.story-block > figure.story-image > div.story-image__content > a.image-link |
div.story-block > figure.story-image > div.story-image__content > a.image-link div.story-block > figure.story-image > div.story-image__content > a.image-link |
div.story-block > figure.story-image > div.story-image__content > a.image-link div.story-block > figure.story-image > div.story-image__content > a.image-link |
div.story-block > figure.story-image > div.story-image__content > a.image-link div.story-block > figure.story-image > div.story-image__content > 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.
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 |
|---|
Free - in Rustore div.smartbanner > div.smartbanner__info > div > div.smartbanner__info__price |
Перейти div#smart-banner > div.smartbanner > a.smartbanner__button > span.smartbanner__button__label |
О чем мечтал блог? div.app > div.app__content > div.promo-banner > a.button |
Вход div.header__mobile > div.header__content > div.button-sign-in > button.button-sign-in__inner |
Горячее div.pkb-tab-list > nav.pkb-tab-list__tabs > a.pkb-tab > span |
Свежего div.info-banner__content > div > p > a |
Лучшее div.info-banner__content > div > p > a |
4102 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
913 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
#comment_390038948 div.story__content-inner > div.story-block > p > a |
13303 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
9184 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
12372 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
ПИКАБУ div.story__author-panel > div.story__author-panel-info > div.story__user-info > span.story__user-badge |
Закреплено article.story > div.story__main > div.story__badge > div.story-label |
Новости Пикабу div.story__community > div.story__community_name > a.story__community-link > span.story__community-name |
Обновления на Пикабу header.story__header > div.story__series > a > span |
Установить новое приложение на iOS div.story-block > div.pkb-highlight-block > p > a |
Больше видео div.story__content-inner > div.m-h-4 > button.pkb-normal-btn > span |
Мем в глаз попал div.story__content-inner > div.story-block > p > a |
МАХ div.story__content-inner > div.story-block > p > a |
2613 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
Отнять и поделить div.story__main > div.story__author-header > div.story__user-info-group > span.story__user-badge |
22 div.story__main > header.story__header > h2.story__title > a.story__title-comstories |
Стихоплятство header.story__header > div.story__series > a > span |
12174 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
9637 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
6399 div.story__footer-tools > div.story__footer-rating > div.story__rating-block > div.story__rating-count |
Trip.com div.story__content-inner > div.story-block > p > a |
GGstanoff div.story__content-inner > div.story-block > p > a |
Пикабу Промокоды div.story__content-inner > div.story-block > p > a |
ПИКАЧУ div.story__content-inner > div.story-block > p > a |
Капитал коммунист div.story__main > div.story__author-header > div.story__user-info-group > span.story__user-badge |
These are opportunities to improve the legibility of your content.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
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.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Виктория Боня div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Доступ div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Дмитрий Песков div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Политика div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
2.9K div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
208 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Ещё 8 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Утилизационный сбор div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Негатив div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Волна постов div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Григорий Остер div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Сарказм div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Картинка с текстом div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
1.8K div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
173 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Ещё 7 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Приложение на iOS div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Короткие видео div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Telegram (ссылка) div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
785 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
201 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Ещё 9 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Волна постов div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Ответ на пост div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Политика div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Скриншот div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Сарказм div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
2K div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
427 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Ещё 7 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Политика div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
1.6K div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Threads div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Длиннопост div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Повтор div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Мат div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Волна постов div.story__tags-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
1.1K div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
637 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
Ещё 10 div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html.mv html.mv |
These items highlight common accessibility best practices.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | cs.pikabu.ru/apps/ub/5.4.700/mobile/vendors.edb3f6438953.mo.js line 1, col 426144 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: the server responded with a status of 403 () |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.
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 |
|---|
Закрыть div.app__content > div#smart-banner > div.smartbanner > a.smartbanner__exit |
To appear in search results, crawlers need access to your app.
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 |
|---|
div.app > div.app__content > div.promo-banner > img div.app > div.app__content > div.promo-banner > img |
div.app > div.app__content > div.promo-banner > img.promo-banner__image div.app > div.app__content > div.promo-banner > img.promo-banner__image |
div.app > div.app__content > div.promo-banner > img.promo-banner__image div.app > div.app__content > div.promo-banner > img.promo-banner__image |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img div.story__footer-tools > div.story__footer-rating > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
885 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.49 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.04 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
3.35 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
8.84 s
Audit breakdown by category with detailed findings.
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
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
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.
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 | |
|---|---|---|---|
div.stories-feed__container > article.story > div.story__main > ::before div.stories-feed__container > article.story > div.story__main > ::before | cs.pikabu.ru/apps/ub/5.4.382/desktop/sprite_96dpi.webp | 109.3 KiB | 44.7 KiB |
div.sidebar-block > div#adfox_d_feed_hot_sidebar_1 > a.g73a5bf50 > img div.sidebar-block > div#adfox_d_feed_hot_sidebar_1 > a.g73a5bf50 > img | /get-adfox-content/2765366/250310_adfox_3282665_14733142.... | 54.8 KiB | 41.1 KiB |
Известная настольная игра «Длинные Нарды Турнир». Бросайте вызов друзьям, сорев… section.sidebar-block > article.sidebar-game > a.sidebar-game__link > img.sidebar-game__img | cs17.pikabu.ru/s/games_showcase/2025/09/23/13/4bmvl5vn_lg.webp | 45.3 KiB | 39.3 KiB |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img | cs14.pikabu.ru/images/community/380/1675482212393232191.png | 27.1 KiB | 27.0 KiB |
Транспорт main.main__inner > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs17.pikabu.ru/s/2026/01/27/11/4exfldty.png | 21.4 KiB | 21.4 KiB |
18+ main.main__inner > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs19.pikabu.ru/s/2026/01/27/11/firuwmvl.png | 14.3 KiB | 14.2 KiB |
Спорт div.story__user > div.story__user-info > a.story__topic > img | cs17.pikabu.ru/s/2026/01/27/11/7evfk7uf.png | 14.1 KiB | 14.0 KiB |
Политика div.story__user > div.story__user-info > a.story__topic > img | cs18.pikabu.ru/s/2026/01/27/11/ieprdtli.png | 14.0 KiB | 14.0 KiB |
Юмор div.story__user > div.story__user-info > a.story__topic > img | cs20.pikabu.ru/s/2026/01/27/11/fir2xasm.png | 13.2 KiB | 13.1 KiB |
inko8gnito a.story__user-link > div.avatar > span.avatar__inner > img.image-lazy-processed | cs13.pikabu.ru/avatars/1619/m1619612-1874628524.png | 12.2 KiB | 12.1 KiB |
Отношения main.main__inner > div.page-topic-links > a.page-topic-links__link > img.page-topic-links__image | cs16.pikabu.ru/s/2026/01/27/11/cmtsikgi.png | 11.7 KiB | 11.7 KiB |
ZoVaDa a.story__user-link > div.avatar > span.avatar__inner > img.image-lazy-processed | cs13.pikabu.ru/avatars/7827/m7827516-1460492533.png | 10.6 KiB | 10.5 KiB |
div.story-block > div > div.pkb-player__player--tThGUzxl > div.pkb-player-block__preview--Ta5pXYyN div.story-block > div > div.pkb-player__player--tThGUzxl > div.pkb-player-block__preview--Ta5pXYyN | cs16.pikabu.ru/s/2026/04/22/09/fgqh2bli_s0f0d10m0_460x308p.jpg | 31.7 KiB | 8.7 KiB |
div.header__item > div.header-right-menu > a#specials > img div.header__item > div.header-right-menu > a#specials > img | cs13.pikabu.ru/post_img/2024/02/17/11/1708193672164130489.png | 8.2 KiB | 7.7 KiB |
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 |
|---|---|---|
| cs.pikabu.ru/apps/ub/5.4.703/desktop/app.mo.css | 98.5 KiB | 364 ms |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
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.
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 |
|---|---|---|
| cs.pikabu.ru/apps/ub/5.4.703/desktop/app.mo.css | 98.2 KiB | 87.1 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 |
|---|---|---|---|
| pikabu.ru/.well-known/ddos-guard/check | 1.4 s | 454 ms | 9.6 ms |
| Unattributable | 710 ms | 139 ms | 0.0 ms |
| cs.pikabu.ru/apps/ub/5.4.703/desktop/app.cafbfecd864d.mo.js | 668 ms | 424 ms | 47 ms |
| pikabu.ru/ | 607 ms | 64 ms | 7.5 ms |
| cs.pikabu.ru/apps/ub/5.4.653/desktop/app.d7f4fefdaaf0.mo.js | 357 ms | 164 ms | 2.6 ms |
| cs.pikabu.ru/apps/ub/5.4.703/desktop/vendors.e3b40f3c59b2.mo.js | 346 ms | 259 ms | 55 ms |
| cdn1.moe.video/p/b.js | 268 ms | 154 ms | 49 ms |
| cs.pikabu.ru/apps/ub/5.4.700/desktop/ui.b4c605b0ab0f.mo.js | 259 ms | 226 ms | 23 ms |
| mc.yandex.ru/metrika/tag.js | 252 ms | 195 ms | 21 ms |
| yandex.ru/ads/system/context.js | 219 ms | 157 ms | 9.5 ms |
| yandex.ru/ads/system/header-bidding.js | 110 ms | 63 ms | 3.3 ms |
| ad.mail.ru/static/sync-loader.js | 105 ms | 87 ms | 8.1 ms |
| www.googletagmanager.com/gtag/js?id=G-GDRZR2E90Y | 94 ms | 80 ms | 13 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 | 2.6 s |
| Style & Layout | 1.4 s |
| Other | 921 ms |
| Script Parsing & Compilation | 303 ms |
| Rendering | 115 ms |
| Garbage Collection | 109 ms |
| Parse HTML & CSS | 92 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
| Pages with WebSocket cannot enter back/forward cache. | Pending browser support |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| cs.pikabu.ru/apps/ub/5.4.703/desktop/app.cafbfecd864d.mo.js | 368.1 KiB | 267.2 KiB |
| cs.pikabu.ru/apps/ub/5.4.703/desktop/vendors.e3b40f3c59b2.mo.js | 345.9 KiB | 245.3 KiB |
| cs.pikabu.ru/apps/ub/5.4.700/desktop/ui.b4c605b0ab0f.mo.js | 134.5 KiB | 110.4 KiB |
| yastatic.net/partner-code-bundles/1304651/00cc0164cd639ddf.js | 129.7 KiB | 99.4 KiB |
| cdn1.moe.video/p/b.js | 100.6 KiB | 80.6 KiB |
| cdn1.moe.video/p/b.js | 100.6 KiB | 80.6 KiB |
| www.googletagmanager.com/gtag/js?id=G-GDRZR2E90Y | 175.9 KiB | 69.7 KiB |
| yandex.ru/ads/system/context.js | 104.0 KiB | 57.8 KiB |
| mc.yandex.ru/metrika/tag.js | 84.7 KiB | 52.4 KiB |
| pikabu.ru/.well-known/ddos-guard/check | 176.8 KiB | 51.8 KiB |
| cs.pikabu.ru/apps/ub/5.4.561/desktop/vendors-editor.626cedc51779.mo.js | 43.0 KiB | 43.0 KiB |
| mc.yandex.ru/metrika/tag.js | 84.7 KiB | 42.8 KiB |
| yastatic.net/partner-code-bundles/1304651/22d10f9d8e892aab.js | 31.8 KiB | 24.4 KiB |
| yastatic.net/s3/passport-static/autofill/1.82.1/client/suggest.js | 26.9 KiB | 21.8 KiB |
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 | |
|---|---|
div > div#adfox_d_feed_hot_1_1_1 > a.g73a5bf50 > img div > div#adfox_d_feed_hot_1_1_1 > a.g73a5bf50 > img | /get-adfox-content/2774030/250310_adfox_3282665_14733146.... |
div.sidebar-block > div#adfox_d_feed_hot_sidebar_1 > a.g73a5bf50 > img div.sidebar-block > div#adfox_d_feed_hot_sidebar_1 > a.g73a5bf50 > img | /get-adfox-content/2765366/250310_adfox_3282665_14733142.... |
div.header__item > div.header-right-menu > a#specials > img div.header__item > div.header-right-menu > a#specials > img | cs13.pikabu.ru/post_img/2024/02/17/11/1708193672164130489.png |
section.info-banner > div.info-banner__content > div.info-banner__logo > img section.info-banner > div.info-banner__content > div.info-banner__logo > img | cs.pikabu.ru/images/big_svg/onboarding-hot.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. Learn more about prohibited ARIA roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
«Пятничное [моё]» — традиция древних предков div.header__main > div.header__inner > div.header__item > div.logo |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
Скопировать ссылку на пост header.story__header > h2.story__title > span.story-title-icons > span.story-title-icons__icon |
Загружаем количество просмотров div.story__main > header.story__header > div.story__sub-info > div.story__views |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
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.main > main.main__inner > section.info-banner > button.button_link div.main > main.main__inner > section.info-banner > button.button_link |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn div.story__content-wrapper > div.story__emotions > div.emotions > button.emotion-btn |
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 |
|---|
div.header__item > div.header-right-menu > a#specials > img div.header__item > div.header-right-menu > a#specials > img |
div.header__item > div.header-right-menu > a#specials > img div.header__item > div.header-right-menu > a#specials > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__left > div.story__scroll > div.story__rating-block > img div.story__left > div.story__scroll > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__left > div.story__scroll > div.story__rating-block > img div.story__left > div.story__scroll > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
body > iframe#iframe body > iframe#iframe |
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.header__inner > div.header__item > div.logo > a.logo__image div.header__inner > div.header__item > div.logo > a.logo__image |
div.header__wrapper > div.header__item > div.header-right-menu > a#specials div.header__wrapper > div.header__item > div.header-right-menu > a#specials |
div.header__wrapper > div.header__item > div.header-right-menu > a.header-right-menu__item div.header__wrapper > div.header__item > div.header-right-menu > a.header-right-menu__item |
aside.sidebar__inner > div.sidebar-block > div#adfox_d_feed_hot_sidebar_1 > a.g73a5bf50 aside.sidebar__inner > div.sidebar-block > div#adfox_d_feed_hot_sidebar_1 > a.g73a5bf50 |
div.sidebar-block__content > div.sidebar-block-links__footer > div.sidebar-block-links__social > a.pkb-btn-social-icon div.sidebar-block__content > div.sidebar-block-links__footer > div.sidebar-block-links__social > a.pkb-btn-social-icon |
div.sidebar-block__content > div.sidebar-block-links__footer > div.sidebar-block-links__social > a.pkb-btn-social-icon div.sidebar-block__content > div.sidebar-block-links__footer > div.sidebar-block-links__social > a.pkb-btn-social-icon |
div.sidebar-block__content > div.sidebar-block-links__footer > div.sidebar-block-links__social > a.pkb-btn-social-icon div.sidebar-block__content > div.sidebar-block-links__footer > div.sidebar-block-links__social > a.pkb-btn-social-icon |
div.story__main > div > div#adfox_d_feed_hot_1_1_1 > a.g73a5bf50 div.story__main > div > div#adfox_d_feed_hot_1_1_1 > a.g73a5bf50 |
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.
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 |
|---|
Горячее div.header__item > div.header-menu > div.header-menu__item > a |
Войти div.header__wrapper > div.header__item > div.header-right-menu > button.pkb-normal-btn |
Свежего div.info-banner__content > div > p > a |
Лучшее div.info-banner__content > div > p > a |
4106 div.story__left > div.story__scroll > div.story__rating-block > div.story__rating-count |
5 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
131K header.story__header > div.story__sub-info > div.story__views > span.story__views-count |
755 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
913 div.story__left > div.story__scroll > div.story__rating-block > div.story__rating-count |
16 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
100 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
13304 div.story__left > div.story__scroll > div.story__rating-block > div.story__rating-count |
20 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
#comment_390038948 div.story__content-inner > div.story-block > p > a |
722 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
9184 div.story__left > div.story__scroll > div.story__rating-block > div.story__rating-count |
14 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
255 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
12372 div.story__left > div.story__scroll > div.story__rating-block > div.story__rating-count |
20 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
313 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
ПИКАБУ div.story__author-panel-info > div.story__user-info > div.story__user-info-group > span.story__user-badge |
Подписаться div.story__author-panel > div.subscribe-btn__wrapper--HZJXdLAP > button.pkb-btn__host--n2MGeea1 > span.pkb-btn__text--FO_UA9yM |
Закреплено div.story__main > header.story__header > div.story__labels > span.story-label |
Обновления на Пикабу header.story__header > div.story__series > a > span |
11 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
Установить новое приложение на iOS div.story-block > div.pkb-highlight-block > p > a |
30 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
2614 div.story__left > div.story__scroll > div.story__rating-block > div.story__rating-count |
16 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
Мем в глаз попал div.story__content-inner > div.story-block > p > a |
МАХ div.story__content-inner > div.story-block > p > a |
102 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
12174 div.story__left > div.story__scroll > div.story__rating-block > div.story__rating-count |
Отнять и поделить div.story__user > div.story__user-info > div.story__user-info-group > span.story__user-badge |
22 div.story__main > header.story__header > h2.story__title > a.story__title-comstories |
Стихоплятство header.story__header > div.story__series > a > span |
21 час назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
281 div.story__footer > div.story__tools > a.story__comments-link > span.story__comments-link-count |
17 часов назад div.story__main > header.story__header > div.story__sub-info > time.story__datetime |
These are opportunities to improve the legibility of your content.
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.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Политика div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Политика div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Григорий Остер div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Сарказм div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Картинка с текстом div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Серия Обновления на Пикабу div.story__main > header.story__header > div.story__series > a |
Серия Стихоплятство div.story__main > header.story__header > div.story__series > a |
[моё] div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Григорий Остер div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Негатив div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Скриншот div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
Сарказм div.story__content-wrapper > div.story__tags > div.story__collapsed-tags-container > a.tags__tag |
These items highlight common accessibility best practices.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | cs.pikabu.ru/apps/ub/5.4.703/desktop/vendors.e3b40f3c59b2.mo.js line 1, col 423766 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () | |
Failed to load resource: the server responded with a status of 403 () |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.
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 |
|---|
div.header__item > div.header-right-menu > a#specials > img div.header__item > div.header-right-menu > a#specials > img |
div.header__item > div.header-right-menu > a#specials > img div.header__item > div.header-right-menu > a#specials > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__left > div.story__scroll > div.story__rating-block > img div.story__left > div.story__scroll > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
div.story__left > div.story__scroll > div.story__rating-block > img div.story__left > div.story__scroll > div.story__rating-block > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
a.story__community-link > div.community-avatar > span.avatar__inner > img a.story__community-link > div.community-avatar > span.avatar__inner > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback