Typescript Logging Developer Extension

This developer tool extension can be used when your web application uses typescript-logging.

Was ist Typescript Logging Developer Extension?

Typescript Logging Developer Extension ist eine Chrome-Erweiterung, die von mre entwickelt wurde, und ihr Hauptmerkmal ist "This developer tool extension can be used when your web application uses typescript-logging.".

Erweiterungsscreenshots

screenshot

Typescript Logging Developer Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Typescript Logging Developer Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Developer extension for typescript-logging. This extension can be used to control the logging of your typescript (javascript) application when it uses the typescript-logging project for logging.

This extension allows to dynamically change the log levels of registered categories as well as filtering for levels/text of the log.

Developer extension site: https://github.com/mreuvers/typescript-logging-extension

Typescript-logging site: https://github.com/mreuvers/typescript-logging                    

Grundlegende Informationen zur Erweiterung

Name Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
Offizielle URL https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Beschreibung This developer tool extension can be used when your web application uses typescript-logging.
Dateigröße 610 KB
Installationsanzahl 308
Aktuelle Version 0.3.0
Letztes Update 2017-08-16
Veröffentlichungsdatum 2017-08-16
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler mre
Zahlungsart free
Hilfeseite URL https://github.com/mreuvers/typescript-logging-extension
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Typescript Logging Developer Extension",
    "description": "This developer tool extension can be used when your web application uses typescript-logging.",
    "version": "0.3.0",
    "devtools_page": "devtools.html",
    "permissions": [
        "",
        "storage",
        "webNavigation"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "128": "images\/icon.png"
    },
    "short_name": "TSL Developer Extension"
}