Typescript Logging Developer Extension

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

Co je Typescript Logging Developer Extension?

Typescript Logging Developer Extension je rozšíření Chrome vyvinuté mre, a jeho hlavní funkcí je „This developer tool extension can be used when your web application uses typescript-logging.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Typescript Logging Developer Extension

Stáhněte si soubory rozšíření Typescript Logging Developer 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í

                        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                    

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

Název Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
Oficiální URL https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Popis This developer tool extension can be used when your web application uses typescript-logging.
Velikost souboru 610 KB
Počet instalací 308
Aktuální Verze 0.3.0
Poslední Aktualizace 2017-08-16
Datum Vydání 2017-08-16
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář mre
Typ Platby free
URL Stránky Nápovědy https://github.com/mreuvers/typescript-logging-extension
Podporované Jazyky 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"
}