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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}