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"
}