Core Web Vitals Inspector
Find scrips that bring down your Core Web Vitals scores
Core Web Vitals Inspector là gì?
Core Web Vitals Inspector là một tiện ích mở rộng Chrome được phát triển bởi geosopuk, và tính năng chính của nó là "Find scrips that bring down your Core Web Vitals scores".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Core Web Vitals Inspector
Tải xuống các tệp mở rộng Core Web Vitals Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Core Web Vitals Inspector |
ID | enmmbfgeailcehfokaaanhgcolkodcim |
URL Chính Thức | https://chromewebstore.google.com/detail/core-web-vitals-inspector/enmmbfgeailcehfokaaanhgcolkodcim |
Mô tả | Find scrips that bring down your Core Web Vitals scores |
Kích Thước Tệp | 357 KB |
Số Lần Cài Đặt | 173 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2021-07-20 |
Ngày Phát Hành | 2021-07-20 |
Nhà Phát Triển | geosopuk |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |