Typescript Logging Developer Extension

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

什么是Typescript Logging Developer Extension?

Typescript Logging Developer Extension是由mre开发的Chrome扩展程序,该扩展的主要功能是“This developer tool extension can be used when your web application uses typescript-logging.”。

扩展截图

screenshot

下载Typescript Logging Developer Extension扩展crx文件

下载Typescript Logging Developer Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
官方URL https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
简介 This developer tool extension can be used when your web application uses typescript-logging.
文件大小 610 KB
安装次数 308
当前版本 0.3.0
更新时间 2017-08-16
上架时间 2017-08-16
评分 4.00/5 共1次评分
开发者 mre
付费类型 free
帮助页面URL https://github.com/mreuvers/typescript-logging-extension
支持的语言 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"
}