Preact Developer Tools
Adds debugging tools for Preact to Chrome
Preact Developer Toolsคืออะไร?
Preact Developer Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Preact Developers และคุณลักษณะหลักของมันคือ "Adds debugging tools for Preact to Chrome"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Preact Developer Tools
ดาวน์โหลดไฟล์ส่วนขยาย Preact Developer Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Debugging tools for Preact. This extension allows you to inspect the component hierarchy and change properties on the fly.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Preact Developer Tools |
ID | ilcajpmogmhpliinlbcdebhbcanbghmd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/preact-developer-tools/ilcajpmogmhpliinlbcdebhbcanbghmd |
คำอธิบาย | Adds debugging tools for Preact to Chrome |
ขนาดไฟล์ | 144 KB |
จำนวนการติดตั้ง | 9,788 |
เวอร์ชันปัจจุบัน | 4.7.1 |
อัปเดตครั้งล่าสุด | 2023-03-06 |
วันที่เผยแพร่ | 2020-06-10 |
คะแนน | 5.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | Preact Developers |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://preactjs.github.io/preact-devtools/ |
URL หน้าช่วยเหลือ | https://github.com/preactjs/preact-devtools/issues/ |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/preactjs/preact-devtools/blob/master/PRIVACY.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Preact Developer Tools", "description": "Adds debugging tools for Preact to Chrome", "version": "4.7.1", "devtools_page": "panel\/empty-panel.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "file:\/\/\/*", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png", "192": "icons\/icon-192.png" }, "browser_action": { "default_icon": { "16": "icons\/icon-16-disabled.png", "32": "icons\/icon-32-disabled.png", "48": "icons\/icon-48-disabled.png", "128": "icons\/icon-128-disabled.png", "192": "icons\/icon-192-disabled.png" }, "default_popup": "popup\/disabled.html" }, "background": { "scripts": [ "background\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ " |