Preact Developer Tools
Adds debugging tools for Preact to Chrome
Co to jest Preact Developer Tools?
Preact Developer Tools to rozszerzenie Chrome opracowane przez Preact Developers, a jego główną funkcją jest „Adds debugging tools for Preact to Chrome”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Preact Developer Tools
Pobierz pliki rozszerzeń Preact Developer Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Debugging tools for Preact. This extension allows you to inspect the component hierarchy and change properties on the fly.
Podstawowe informacje o rozszerzeniu
Nazwa | Preact Developer Tools |
ID | ilcajpmogmhpliinlbcdebhbcanbghmd |
Oficjalny URL | https://chromewebstore.google.com/detail/preact-developer-tools/ilcajpmogmhpliinlbcdebhbcanbghmd |
Opis | Adds debugging tools for Preact to Chrome |
Rozmiar pliku | 144 KB |
Liczba instalacji | 9,788 |
Aktualna Wersja | 4.7.1 |
Ostatnia Aktualizacja | 2023-03-06 |
Data Publikacji | 2020-06-10 |
Ocena | 5.00/5 Łącznie 9 Oceny |
Deweloper | Preact Developers |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://preactjs.github.io/preact-devtools/ |
Adres URL Strony Pomocy | https://github.com/preactjs/preact-devtools/issues/ |
Adres URL Strony Polityki Prywatności | https://github.com/preactjs/preact-devtools/blob/master/PRIVACY.md |
Obsługiwane Języki | 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": [ " |