Interactive Canvas DevTools

DevTools for Interactive Canvas

Qu'est-ce que Interactive Canvas DevTools ?

Interactive Canvas DevTools est une extension Chrome développée par Actions on Google, et sa fonction principale est "DevTools for Interactive Canvas".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Interactive Canvas DevTools

Téléchargez les fichiers d'extension Interactive Canvas DevTools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Interactive Canvas DevTools Interactive Canvas DevTools
ID pkjknimohoicpbkkgdhbdhcgnbcdefhk
URL Officiel https://chromewebstore.google.com/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk
Description DevTools for Interactive Canvas
Taille du Fichier 358 KB
Nombre d'Installations 803
Version Actuelle 1.0.1
Dernière Mise à Jour 2021-09-26
Date de Publication 2021-09-24
Évaluation 2.00/5 Total 1 Évaluations
Développeur Actions on Google
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://developers.google.com/assistant/interactivecanvas
URL de la Page d'Aide https://www.reddit.com/r/GoogleAssistantDev/
Langues Prises en Charge 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"
}