Typescript Logging Developer Extension

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

Apa itu Typescript Logging Developer Extension?

Typescript Logging Developer Extension adalah ekstensi Chrome yang dikembangkan oleh mre, dan fitur utamanya adalah "This developer tool extension can be used when your web application uses typescript-logging.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Typescript Logging Developer Extension

Unduh file ekstensi Typescript Logging Developer Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
URL Resmi https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Deskripsi This developer tool extension can be used when your web application uses typescript-logging.
Ukuran File 610 KB
Jumlah Instalasi 308
Versi Saat Ini 0.3.0
Terakhir Diperbarui 2017-08-16
Tanggal Publikasi 2017-08-16
Penilaian 4.00/5 Total 1 Penilaian
Pengembang mre
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/mreuvers/typescript-logging-extension
Bahasa yang Didukung 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"
}