Preact Developer Tools
Adds debugging tools for Preact to Chrome
Was ist Preact Developer Tools?
Preact Developer Tools ist eine Chrome-Erweiterung, die von Preact Developers entwickelt wurde, und ihr Hauptmerkmal ist "Adds debugging tools for Preact to Chrome".
Erweiterungsscreenshots
Preact Developer Tools-Erweiterungs-CRX-Datei herunterladen
Laden Sie Preact Developer Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Debugging tools for Preact. This extension allows you to inspect the component hierarchy and change properties on the fly.
Grundlegende Informationen zur Erweiterung
Name | Preact Developer Tools |
ID | ilcajpmogmhpliinlbcdebhbcanbghmd |
Offizielle URL | https://chromewebstore.google.com/detail/preact-developer-tools/ilcajpmogmhpliinlbcdebhbcanbghmd |
Beschreibung | Adds debugging tools for Preact to Chrome |
Dateigröße | 144 KB |
Installationsanzahl | 9,788 |
Aktuelle Version | 4.7.1 |
Letztes Update | 2023-03-06 |
Veröffentlichungsdatum | 2020-06-10 |
Bewertung | 5.00/5 Insgesamt 9 Bewertungen |
Entwickler | Preact Developers |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://preactjs.github.io/preact-devtools/ |
Hilfeseite URL | https://github.com/preactjs/preact-devtools/issues/ |
URL der Datenschutzrichtlinien-Seite | https://github.com/preactjs/preact-devtools/blob/master/PRIVACY.md |
Unterstützte Sprachen | 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": [ " |