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
Eメール [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"
}