Interactive Canvas DevTools

DevTools for Interactive Canvas

什么是Interactive Canvas DevTools?

Interactive Canvas DevTools是由Actions on Google开发的Chrome扩展程序,该扩展的主要功能是“DevTools for Interactive Canvas”。

扩展截图

screenshot
screenshot

下载Interactive Canvas DevTools扩展crx文件

下载Interactive Canvas DevTools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Interactive Canvas DevTools Interactive Canvas DevTools
ID pkjknimohoicpbkkgdhbdhcgnbcdefhk
官方URL https://chromewebstore.google.com/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk
简介 DevTools for Interactive Canvas
文件大小 358 KB
安装次数 803
当前版本 1.0.1
更新时间 2021-09-26
上架时间 2021-09-24
评分 2.00/5 共1次评分
开发者 Actions on Google
电子邮箱 [email protected]
付费类型 free
扩展官网 https://developers.google.com/assistant/interactivecanvas
帮助页面URL https://www.reddit.com/r/GoogleAssistantDev/
支持的语言 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"
}