Core Web Vitals Inspector
Find scrips that bring down your Core Web Vitals scores
O que é Core Web Vitals Inspector?
Core Web Vitals Inspector é uma extensão do Chrome desenvolvida por geosopuk, e sua principal característica é "Find scrips that bring down your Core Web Vitals scores".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Core Web Vitals Inspector
Baixe arquivos de extensão Core Web Vitals Inspector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Is your Core Web Vitals performance being harmed by the scripts embedded in your website? Core Web Vitals Inspector helps you quickly identify which scripts are causing issues with your CWV scores, and shows the real time impact on CLS, FID and LCP. Run Core Web Vitals tests with any combination of on page scripts disable and see how each vitals score is impacted. Free unlimited tests on up to three domains. Affordable pro upgrade available for agencies and freelancers needing to test unlimited websites.
Informações Básicas da Extensão
Nome | Core Web Vitals Inspector |
ID | enmmbfgeailcehfokaaanhgcolkodcim |
URL Oficial | https://chromewebstore.google.com/detail/core-web-vitals-inspector/enmmbfgeailcehfokaaanhgcolkodcim |
Descrição | Find scrips that bring down your Core Web Vitals scores |
Tamanho do Arquivo | 357 KB |
Contagem de Instalações | 173 |
Versão Atual | 1.0 |
Última Atualização | 2021-07-20 |
Data de Publicação | 2021-07-20 |
Desenvolvedor | geosopuk |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Core Web Vitals Inspector", "description": "Find scrips that bring down your Core Web Vitals scores", "version": "1.0", "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/lodash-debounce-custom.js", "js\/vitals.js" ] } ], "background": { "scripts": [ "js\/vendor.js", "js\/background.js" ], "persistent": true }, "web_accessible_resources": [ "js\/web-vitals.js", "js\/vitals.js" ], "permissions": [ "webRequest", "webRequestBlocking", "tabs", "storage", "http:\/\/localhost:5000\/", "http:\/\/*\/*", "https:\/\/*\/*", "https:\/\/www.googleapis.com\/pagespeedonline\/v5\/runPagespeed?*" ], "content_security_policy": "script-src 'self' https:\/\/www.googleapis.com; object-src 'self'" } |