Preact Developer Tools
Adds debugging tools for Preact to Chrome
什么是Preact Developer Tools?
Preact Developer Tools是由Preact Developers开发的Chrome扩展程序,该扩展的主要功能是“Adds debugging tools for Preact to Chrome”。
扩展截图
下载Preact Developer Tools扩展crx文件
下载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": [ " |