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 - это расширение Chrome, разработанное mre, и его основная функция - "This developer tool extension can be used when your web application uses typescript-logging.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Typescript Logging Developer Extension

Скачайте файлы расширений 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"
}