Dart Debug Extension

Enables debugging Dart web application using package:dwds. Source code:…

Dart Debug Extension란 무엇입니까?

Dart Debug Extension은(는) dart-bat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables debugging Dart web application using package:dwds. Source code:…"입니다.

확장 프로그램 스크린샷

Dart Debug Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Enables debugging Dart web application using package:dwds.

Source code: https://github.com/dart-lang/webdev/tree/master/dwds/debug_extension_mv3

Please report any bugs on the Github page: https://github.com/dart-lang/webdev/issues/new?assignees=&labels=dart-debug-extension&projects=&template=dart_debug_extension.md                    

확장 프로그램 기본 정보

이름 Dart Debug Extension Dart Debug Extension
ID eljbmlghnomdjgdjmbdekegdkbabckhm
공식 URL https://chromewebstore.google.com/detail/dart-debug-extension/eljbmlghnomdjgdjmbdekegdkbabckhm
설명 Enables debugging Dart web application using package:dwds. Source code:…
파일 크기 1.14 MB
설치 횟수 14,110
현재 버전 2.1.2
최근 업데이트 2024-01-18
출시 날짜 2020-02-07
평점 3.10/5 총 10 개의 평점
개발자 dart-bat
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dart-lang/webdev/tree/master/dwds/debug_extension_mv3
도움말 페이지 URL https://github.com/dart-lang/webdev/issues/new?assignees=&labels=dart-debug-extension&projects=&template=dart_debug_extension.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dart Debug Extension",
    "version": "2.1.2",
    "manifest_version": 3,
    "devtools_page": "static_assets\/devtools.html",
    "action": {
        "default_icon": "static_assets\/dart_grey.png"
    },
    "externally_connectable": {
        "ids": [
            "nbkbficgbembimioedhceniahniffgpl"
        ],
        "matches": [
            "https:\/\/cider.corp.google.com\/*",
            "https:\/\/cider-staging.corp.google.com\/*",
            "https:\/\/cider-test.corp.google.com\/*",
            "https:\/\/cider-v.corp.google.com\/*",
            "https:\/\/cider-v-staging.corp.google.com\/*",
            "https:\/\/cider-v-test.corp.google.com\/*"
        ]
    },
    "permissions": [
        "debugger",
        "notifications",
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.dart.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "detector.dart.js",
                "copier.dart.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "copyAppId": {
            "suggestedKey": {
                "default": "Ctrl+Shift+7",
                "mac": "Command+Shift+7"
            },
            "description": "Copy the app ID"
        }
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "debug_info.dart.js"
            ]
        }
    ]
}