Dart Debug Extension

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

Co je Dart Debug Extension?

Dart Debug Extension je rozšíření Chrome vyvinuté dart-bat, a jeho hlavní funkcí je „Enables debugging Dart web application using package:dwds. Source code:…“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření Dart Debug Extension

Stáhněte si soubory rozšíření Dart Debug Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Dart Debug Extension Dart Debug Extension
ID eljbmlghnomdjgdjmbdekegdkbabckhm
Oficiální URL https://chromewebstore.google.com/detail/dart-debug-extension/eljbmlghnomdjgdjmbdekegdkbabckhm
Popis Enables debugging Dart web application using package:dwds. Source code:…
Velikost souboru 1.14 MB
Počet instalací 14,110
Aktuální Verze 2.1.2
Poslední Aktualizace 2024-01-18
Datum Vydání 2020-02-07
Hodnocení 3.10/5 Celkem 10 Hodnocení
Vývojář dart-bat
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/dart-lang/webdev/tree/master/dwds/debug_extension_mv3
URL Stránky Nápovědy https://github.com/dart-lang/webdev/issues/new?assignees=&labels=dart-debug-extension&projects=&template=dart_debug_extension.md
Podporované Jazyky 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"
            ]
        }
    ]
}