Alpine.js devtools
DevTools extension for debugging Alpine.js applications.
Vad är Alpine.js devtools?
Alpine.js devtools är en Chrome-tillägg utvecklad av Alpine.js devtools, och dess huvudfunktion är "DevTools extension for debugging Alpine.js applications.".
Tilläggsskärmbilder
Ladda ner Alpine.js devtools-förlängningens CRX-fil
Ladda ner Alpine.js devtools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Alpine.js devtools is a Chrome extension for the Alpine.js JavaScript library. It allows you to detect, inspect and edit Alpine.js data and components in the Chrome Developer Tools. After installing you will see a new tab in the Chrome DevTools. This Alpine.js tab displays a list of Alpine.js components that are rendered on the page. By selecting one of the components in the list, you can inspect and edit its current data in the panel to the right.
Grundläggande Information om Tillägg
Namn | Alpine.js devtools |
ID | fopaemeedckajflibkpifppcankfmbhk |
Officiell webbadress | https://chromewebstore.google.com/detail/alpinejs-devtools/fopaemeedckajflibkpifppcankfmbhk |
Beskrivning | DevTools extension for debugging Alpine.js applications. |
Filstorlek | 67.78 KB |
Antal Installationer | 10,000 |
Aktuell Version | 1.2.0 |
Senast Uppdaterad | 2021-09-08 |
Publiceringsdatum | 2020-04-28 |
Betyg | 4.73/5 Totalt 30 Betyg |
Utvecklare | Alpine.js devtools |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/alpine-collective/alpinejs-devtools |
Hjälpsida URL | https://github.com/alpine-collective/alpinejs-devtools/issues |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Alpine.js devtools", "description": "DevTools extension for debugging Alpine.js applications.", "version": "1.2.0", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_icon": "alpine_extension_grey.png", "default_title": "Alpine.js devtools", "default_popup": "popups\/not-found.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "devtools_page": "devtools-background.html", "web_accessible_resources": [ "panel.html", "devtools-background.html", "backend.js" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src", "content_scripts": [ { "matches": [ " |