Dart Debug Extension

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

What is Dart Debug Extension?

Dart Debug Extension is a Chrome extension developed by dart-bat, and its main feature is "Enables debugging Dart web application using package:dwds. Source code:…".

Extension Screenshots

Download Dart Debug Extension Extension CRX File

Download Dart Debug Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Dart Debug Extension Dart Debug Extension
ID eljbmlghnomdjgdjmbdekegdkbabckhm
Official URL https://chromewebstore.google.com/detail/dart-debug-extension/eljbmlghnomdjgdjmbdekegdkbabckhm
Description Enables debugging Dart web application using package:dwds. Source code:…
File Size 1.14 MB
Installation Count 14,110
Current Version 2.1.2
Last Updated 2024-01-18
Publish Date 2020-02-07
Rating 3.10/5 Total 10 Ratings
Developer dart-bat
Email [email protected]
Payment Type free
Extension Website https://github.com/dart-lang/webdev/tree/master/dwds/debug_extension_mv3
Help Page URL https://github.com/dart-lang/webdev/issues/new?assignees=&labels=dart-debug-extension&projects=&template=dart_debug_extension.md
Supported Languages 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"
            ]
        }
    ]
}