Interactive Canvas DevTools

DevTools for Interactive Canvas

Wat is Interactive Canvas DevTools?

Interactive Canvas DevTools is een Chrome-extensie ontwikkeld door Actions on Google, en de belangrijkste functie is "DevTools for Interactive Canvas".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Interactive Canvas DevTools

Download Interactive Canvas DevTools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Interactive Canvas DevTools Interactive Canvas DevTools
ID pkjknimohoicpbkkgdhbdhcgnbcdefhk
Officiële URL https://chromewebstore.google.com/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk
Beschrijving DevTools for Interactive Canvas
Bestandsgrootte 358 KB
Aantal Installaties 803
Huidige Versie 1.0.1
Laatst Bijgewerkt 2021-09-26
Publicatiedatum 2021-09-24
Beoordeling 2.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Actions on Google
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://developers.google.com/assistant/interactivecanvas
Help Pagina-URL https://www.reddit.com/r/GoogleAssistantDev/
Ondersteunde Talen 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"
}