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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
}