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文件

下载Dart Debug Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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