Typescript Logging Developer Extension

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

Co to jest Typescript Logging Developer Extension?

Typescript Logging Developer Extension to rozszerzenie Chrome opracowane przez mre, a jego główną funkcją jest „This developer tool extension can be used when your web application uses typescript-logging.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Typescript Logging Developer Extension

Pobierz pliki rozszerzeń Typescript Logging Developer Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Typescript Logging Developer Extension Typescript Logging Developer Extension
ID dnkalbdehemhbelicgdnpjdmimnkiojd
Oficjalny URL https://chrome.google.com/webstore/detail/typescript-logging-develo/dnkalbdehemhbelicgdnpjdmimnkiojd
Opis This developer tool extension can be used when your web application uses typescript-logging.
Rozmiar pliku 610 KB
Liczba instalacji 308
Aktualna Wersja 0.3.0
Ostatnia Aktualizacja 2017-08-16
Data Publikacji 2017-08-16
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper mre
Typ Płatności free
Adres URL Strony Pomocy https://github.com/mreuvers/typescript-logging-extension
Obsługiwane Języki 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"
}