Typescript Logging Developer Extension

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

Cos'è Typescript Logging Developer Extension?

Typescript Logging Developer Extension è un'estensione di Chrome sviluppata da mre, e la sua funzione principale è "This developer tool extension can be used when your web application uses typescript-logging.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Typescript Logging Developer Extension

Scarica i file di estensione Typescript Logging Developer 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

                        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                    

Informazioni di Base sull'Estensione

Nome Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
URL Ufficiale https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Descrizione This developer tool extension can be used when your web application uses typescript-logging.
Dimensione del File 610 KB
Conteggio Installazioni 308
Versione Corrente 0.3.0
Ultimo Aggiornamento 2017-08-16
Data di Pubblicazione 2017-08-16
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore mre
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/mreuvers/typescript-logging-extension
Lingue Supportate 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"
}