REMIX DJ

Developer tools for the Remix framework

Cos'è REMIX DJ?

REMIX DJ è un'estensione di Chrome sviluppata da remixdj.dev, e la sua funzione principale è "Developer tools for the Remix framework".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione REMIX DJ

Scarica i file di estensione REMIX DJ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Detects when Remix is used on a page and provides options for viewing the structure of a page:

-A tree chart, with connected nodes representing your routes
-A drop-down list, with child components nested under their parents                    

Informazioni di Base sull'Estensione

Nome REMIX DJ REMIX DJ
ID ifjgigpnonjhdejjllpmdmelofjbokgl
URL Ufficiale https://chromewebstore.google.com/detail/remix-dj/ifjgigpnonjhdejjllpmdmelofjbokgl
Descrizione Developer tools for the Remix framework
Dimensione del File 1.22 MB
Conteggio Installazioni 213
Versione Corrente 0.0.1
Ultimo Aggiornamento 2023-04-24
Data di Pubblicazione 2023-04-24
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore remixdj.dev
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/afa19a84-e8b0-4bb4-b968-6a564afbc9cc
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "REMIX DJ",
    "description": "Developer tools for the Remix framework",
    "version": "0.0.1",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icons\/cropped.logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/contentscript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "detect_remix.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/logo16.png",
        "48": "icons\/logo48.png",
        "128": "icons\/logo128.png",
        "256": "icons\/logo256.png"
    },
    "devtools_page": "devtools\/devtools.html",
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}