Typescript Logging Developer Extension

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

Vad är Typescript Logging Developer Extension?

Typescript Logging Developer Extension är en Chrome-tillägg utvecklad av mre, och dess huvudfunktion är "This developer tool extension can be used when your web application uses typescript-logging.".

Tilläggsskärmbilder

screenshot

Ladda ner Typescript Logging Developer Extension-förlängningens CRX-fil

Ladda ner Typescript Logging Developer Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
Officiell webbadress https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Beskrivning This developer tool extension can be used when your web application uses typescript-logging.
Filstorlek 610 KB
Antal Installationer 308
Aktuell Version 0.3.0
Senast Uppdaterad 2017-08-16
Publiceringsdatum 2017-08-16
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare mre
Betalningssätt free
Hjälpsida URL https://github.com/mreuvers/typescript-logging-extension
Stödda Språk 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"
}