Interactive Canvas DevTools

DevTools for Interactive Canvas

Interactive Canvas DevTools là gì?

Interactive Canvas DevTools là một tiện ích mở rộng Chrome được phát triển bởi Actions on Google, và tính năng chính của nó là "DevTools for Interactive Canvas".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Interactive Canvas DevTools

Tải xuống các tệp mở rộng Interactive Canvas DevTools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Interactive Canvas DevTools Interactive Canvas DevTools
ID pkjknimohoicpbkkgdhbdhcgnbcdefhk
URL Chính Thức https://chromewebstore.google.com/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk
Mô tả DevTools for Interactive Canvas
Kích Thước Tệp 358 KB
Số Lần Cài Đặt 803
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-09-26
Ngày Phát Hành 2021-09-24
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Actions on Google
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://developers.google.com/assistant/interactivecanvas
URL Trang Trợ Giúp https://www.reddit.com/r/GoogleAssistantDev/
Ngôn Ngữ Được Hỗ Trợ 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"
}