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
官方網址 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"
}