Interactive Canvas DevTools

DevTools for Interactive Canvas

Was ist Interactive Canvas DevTools?

Interactive Canvas DevTools ist eine Chrome-Erweiterung, die von Actions on Google entwickelt wurde, und ihr Hauptmerkmal ist "DevTools for Interactive Canvas".

Erweiterungsscreenshots

screenshot
screenshot

Interactive Canvas DevTools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Interactive Canvas DevTools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Interactive Canvas DevTools Interactive Canvas DevTools
ID pkjknimohoicpbkkgdhbdhcgnbcdefhk
Offizielle URL https://chromewebstore.google.com/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk
Beschreibung DevTools for Interactive Canvas
Dateigröße 358 KB
Installationsanzahl 803
Aktuelle Version 1.0.1
Letztes Update 2021-09-26
Veröffentlichungsdatum 2021-09-24
Bewertung 2.00/5 Insgesamt 1 Bewertungen
Entwickler Actions on Google
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://developers.google.com/assistant/interactivecanvas
Hilfeseite URL https://www.reddit.com/r/GoogleAssistantDev/
Unterstützte Sprachen 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"
}