Typescript Logging Developer Extension

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

Typescript Logging Developer Extension là gì?

Typescript Logging Developer Extension là một tiện ích mở rộng Chrome được phát triển bởi mre, và tính năng chính của nó là "This developer tool extension can be used when your web application uses typescript-logging.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Typescript Logging Developer Extension

Tải xuống các tệp mở rộng Typescript Logging Developer Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
URL Chính Thức https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Mô tả This developer tool extension can be used when your web application uses typescript-logging.
Kích Thước Tệp 610 KB
Số Lần Cài Đặt 308
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2017-08-16
Ngày Phát Hành 2017-08-16
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển mre
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/mreuvers/typescript-logging-extension
Ngôn Ngữ Được Hỗ Trợ 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"
}