Alpine.js devtools

DevTools extension for debugging Alpine.js applications.

Was ist Alpine.js devtools?

Alpine.js devtools ist eine Chrome-Erweiterung, die von Alpine.js devtools entwickelt wurde, und ihr Hauptmerkmal ist "DevTools extension for debugging Alpine.js applications.".

Erweiterungsscreenshots

screenshot

Alpine.js devtools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Alpine.js devtools-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Alpine.js devtools Alpine.js devtools
ID fopaemeedckajflibkpifppcankfmbhk
Offizielle URL https://chromewebstore.google.com/detail/alpinejs-devtools/fopaemeedckajflibkpifppcankfmbhk
Beschreibung DevTools extension for debugging Alpine.js applications.
Dateigröße 67.78 KB
Installationsanzahl 10,000
Aktuelle Version 1.2.0
Letztes Update 2021-09-08
Veröffentlichungsdatum 2020-04-28
Bewertung 4.73/5 Insgesamt 30 Bewertungen
Entwickler Alpine.js devtools
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/alpine-collective/alpinejs-devtools
Hilfeseite URL https://github.com/alpine-collective/alpinejs-devtools/issues
Unterstützte Sprachen 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"
        }
    ]
}