Interactive Canvas DevTools

DevTools for Interactive Canvas

Interactive Canvas DevToolsคืออะไร?

Interactive Canvas DevTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Actions on Google และคุณลักษณะหลักของมันคือ "DevTools for Interactive Canvas"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Interactive Canvas DevTools

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}