Interactive Canvas DevTools

DevTools for Interactive Canvas

Cos'è Interactive Canvas DevTools?

Interactive Canvas DevTools è un'estensione di Chrome sviluppata da Actions on Google, e la sua funzione principale è "DevTools for Interactive Canvas".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Interactive Canvas DevTools

Scarica i file di estensione Interactive Canvas DevTools 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

                        Interactive Canvas DevTools is a Chrome DevTools extension for debugging an Interactive Canvas web app by allowing for events and commands to be routed through a DevTools tab. This allows development to occur unbundled from a webhook and conversational model and testing everything together.                    

Informazioni di Base sull'Estensione

Nome Interactive Canvas DevTools Interactive Canvas DevTools
ID pkjknimohoicpbkkgdhbdhcgnbcdefhk
URL Ufficiale https://chromewebstore.google.com/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk
Descrizione DevTools for Interactive Canvas
Dimensione del File 358 KB
Conteggio Installazioni 803
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-09-26
Data di Pubblicazione 2021-09-24
Valutazione 2.00/5 Totale 1 Valutazioni
Sviluppatore Actions on Google
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://developers.google.com/assistant/interactivecanvas
URL della Pagina di Aiuto https://www.reddit.com/r/GoogleAssistantDev/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Interactive Canvas DevTools",
    "description": "DevTools for Interactive Canvas",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "webpage\/content-script.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js-yaml.min.js",
                "webpage\/webpage-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "devtools_page": "bootstrap.html"
}