Dart Debug Extension

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

Cos'è Dart Debug Extension?

Dart Debug Extension è un'estensione di Chrome sviluppata da dart-bat, e la sua funzione principale è "Enables debugging Dart web application using package:dwds. Source code:…".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Dart Debug Extension

Scarica i file di estensione Dart Debug Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Dart Debug Extension Dart Debug Extension
ID eljbmlghnomdjgdjmbdekegdkbabckhm
URL Ufficiale https://chromewebstore.google.com/detail/dart-debug-extension/eljbmlghnomdjgdjmbdekegdkbabckhm
Descrizione Enables debugging Dart web application using package:dwds. Source code:…
Dimensione del File 1.14 MB
Conteggio Installazioni 14,110
Versione Corrente 2.1.2
Ultimo Aggiornamento 2024-01-18
Data di Pubblicazione 2020-02-07
Valutazione 3.10/5 Totale 10 Valutazioni
Sviluppatore dart-bat
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dart-lang/webdev/tree/master/dwds/debug_extension_mv3
URL della Pagina di Aiuto https://github.com/dart-lang/webdev/issues/new?assignees=&labels=dart-debug-extension&projects=&template=dart_debug_extension.md
Lingue Supportate 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"
            ]
        }
    ]
}