Alpine.js devtools

DevTools extension for debugging Alpine.js applications.

Wat is Alpine.js devtools?

Alpine.js devtools is een Chrome-extensie ontwikkeld door Alpine.js devtools, en de belangrijkste functie is "DevTools extension for debugging Alpine.js applications.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Alpine.js devtools

Download Alpine.js devtools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Alpine.js devtools Alpine.js devtools
ID fopaemeedckajflibkpifppcankfmbhk
Officiële URL https://chromewebstore.google.com/detail/alpinejs-devtools/fopaemeedckajflibkpifppcankfmbhk
Beschrijving DevTools extension for debugging Alpine.js applications.
Bestandsgrootte 67.78 KB
Aantal Installaties 10,000
Huidige Versie 1.2.0
Laatst Bijgewerkt 2021-09-08
Publicatiedatum 2020-04-28
Beoordeling 4.73/5 Totaal 30 Beoordelingen
Ontwikkelaar Alpine.js devtools
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/alpine-collective/alpinejs-devtools
Help Pagina-URL https://github.com/alpine-collective/alpinejs-devtools/issues
Ondersteunde Talen 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": [
                ""
            ],
            "js": [
                "detector.js"
            ],
            "run_at": "document_idle"
        }
    ]
}