Typescript Logging Developer Extension

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

What is Typescript Logging Developer Extension?

Typescript Logging Developer Extension is a Chrome extension developed by mre, and its main feature is "This developer tool extension can be used when your web application uses typescript-logging.".

Extension Screenshots

screenshot

Download Typescript Logging Developer Extension Extension CRX File

Download Typescript Logging Developer Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
Official URL https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Description This developer tool extension can be used when your web application uses typescript-logging.
File Size 610 KB
Installation Count 308
Current Version 0.3.0
Last Updated 2017-08-16
Publish Date 2017-08-16
Rating 4.00/5 Total 1 Ratings
Developer mre
Payment Type free
Help Page URL https://github.com/mreuvers/typescript-logging-extension
Supported Languages 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"
}