Interactive Canvas DevTools

DevTools for Interactive Canvas

Vad är Interactive Canvas DevTools?

Interactive Canvas DevTools är en Chrome-tillägg utvecklad av Actions on Google, och dess huvudfunktion är "DevTools for Interactive Canvas".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Interactive Canvas DevTools-förlängningens CRX-fil

Ladda ner Interactive Canvas DevTools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Interactive Canvas DevTools Interactive Canvas DevTools
ID pkjknimohoicpbkkgdhbdhcgnbcdefhk
Officiell webbadress https://chromewebstore.google.com/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk
Beskrivning DevTools for Interactive Canvas
Filstorlek 358 KB
Antal Installationer 803
Aktuell Version 1.0.1
Senast Uppdaterad 2021-09-26
Publiceringsdatum 2021-09-24
Betyg 2.00/5 Totalt 1 Betyg
Utvecklare Actions on Google
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://developers.google.com/assistant/interactivecanvas
Hjälpsida URL https://www.reddit.com/r/GoogleAssistantDev/
Stödda Språk 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"
}