Core Web Vitals Inspector
Find scrips that bring down your Core Web Vitals scores
Core Web Vitals Inspectorとは何ですか?
Core Web Vitals Inspectorはgeosopukによって開発されたChromeの拡張機能で、その主な機能は「Find scrips that bring down your Core Web Vitals scores」です。
拡張機能のスクリーンショット
Core Web Vitals Inspector拡張機能のCRXファイルをダウンロード
Core Web Vitals Inspector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Core Web Vitals Inspector |
ID | enmmbfgeailcehfokaaanhgcolkodcim |
公式URL | https://chromewebstore.google.com/detail/core-web-vitals-inspector/enmmbfgeailcehfokaaanhgcolkodcim |
説明 | Find scrips that bring down your Core Web Vitals scores |
ファイルサイズ | 357 KB |
インストール数 | 173 |
現在のバージョン | 1.0 |
最終更新日 | 2021-07-20 |
公開日 | 2021-07-20 |
開発者 | geosopuk |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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'" } |