Core Web Vitals Inspector
Find scrips that bring down your Core Web Vitals scores
Core Web Vitals Inspectorคืออะไร?
Core Web Vitals Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย geosopuk และคุณลักษณะหลักของมันคือ "Find scrips that bring down your Core Web Vitals scores"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Core Web Vitals Inspector
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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'" } |