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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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