Rax Developer Tools

Adds Rax debugging tools to the Chrome Developer Tools.

Cos'è Rax Developer Tools?

Rax Developer Tools è un'estensione di Chrome sviluppata da raxjs, e la sua funzione principale è "Adds Rax debugging tools to the Chrome Developer Tools.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Rax Developer Tools

Scarica i file di estensione Rax Developer Tools 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

                        Rax Developer Tools lets you inspect the Rax component's structure, props and state.                    

Informazioni di Base sull'Estensione

Nome Rax Developer Tools Rax Developer Tools
ID anpeoinhjjligmgoiepbnigjhmijblff
URL Ufficiale https://chromewebstore.google.com/detail/rax-developer-tools/anpeoinhjjligmgoiepbnigjhmijblff
Descrizione Adds Rax debugging tools to the Chrome Developer Tools.
Dimensione del File 339 KB
Conteggio Installazioni 156
Versione Corrente 3.6.0
Ultimo Aggiornamento 2019-11-28
Data di Pubblicazione 2019-11-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore raxjs
Tipo di Pagamento free
Sito Web dell'Estensione https://rax.js.org/
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rax Developer Tools",
    "description": "Adds Rax debugging tools to the Chrome Developer Tools.",
    "version": "3.6.0",
    "minimum_chrome_version": "49",
    "icons": {
        "16": "icons\/16-production.png",
        "32": "icons\/32-production.png",
        "48": "icons\/48-production.png",
        "128": "icons\/128-production.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-disabled.png",
            "32": "icons\/32-disabled.png",
            "48": "icons\/48-disabled.png",
            "128": "icons\/128-disabled.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "devtools_page": "main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "panel.html",
        "build\/backend.js"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}