Relay Developer Tools

Adds Relay debugging tools to the Chrome Developer Tools.

Cos'è Relay Developer Tools?

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

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Relay Developer Tools

Scarica i file di estensione Relay 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

                        Inspect data in the store of your Relay apps, and how that data changes over time in response to GraphQL queries, and client mutations.                    

Informazioni di Base sull'Estensione

Nome Relay Developer Tools Relay Developer Tools
ID ncedobpgnmkhcmnnkcimnobpfepidadl
URL Ufficiale https://chromewebstore.google.com/detail/relay-developer-tools/ncedobpgnmkhcmnnkcimnobpfepidadl
Descrizione Adds Relay debugging tools to the Chrome Developer Tools.
Dimensione del File 106 KB
Conteggio Installazioni 5,689
Versione Corrente 1737e3f483db+ (8/3/2021)
Ultimo Aggiornamento 2021-08-03
Data di Pubblicazione 2020-03-17
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore Meta
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/relayjs/relay-devtools
URL della Pagina di Aiuto https://github.com/relayjs/relay-devtools
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relay Developer Tools",
    "description": "Adds Relay debugging tools to the Chrome Developer Tools.",
    "version": "0.9.14",
    "version_name": "1737e3f483db+ (8\/3\/2021)",
    "minimum_chrome_version": "78",
    "icons": {
        "16": "icons\/enabled16.png",
        "32": "icons\/enabled32.png",
        "48": "icons\/enabled48.png",
        "128": "icons\/enabled128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/disabled16.png",
            "32": "icons\/disabled32.png",
            "48": "icons\/disabled48.png",
            "128": "icons\/disabled128.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",
        "build\/renderer.js"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/injectGlobalHook.js"
            ],
            "run_at": "document_start"
        }
    ]
}