Chrome JS Error Icon

Little icon to remind you that something gone wrong on the current tab.

ما هو Chrome JS Error Icon؟

Chrome JS Error Icon هو إضافة Chrome تم تطويرها بواسطة Valentin Brosseau، والميزة الرئيسية لها هي "Little icon to remind you that something gone wrong on the current tab.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Chrome JS Error Icon

قم بتنزيل ملفات الامتداد Chrome JS Error Icon بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension tracks javascript errors on your Internet pages without having to open the development console.

Source: https://github.com/c4software/browser-js-error-icon

Features :

- Report Javascript Errors.
- Show counter of current errors in pages.
- Report 404 HTTP Error.
- Report console.error problem.
- Report Unhandled Promise Rejection Warning.                    

معلومات أساسية عن التمديد

الاسم Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
الوصف Little icon to remind you that something gone wrong on the current tab.
حجم الملف 14.06 KB
عدد التثبيتات 1,069
النسخة الحالية 1.0
آخر تحديث 2020-02-14
تاريخ النشر 2020-02-14
تقييم 3.33/5 مجموع تقييمات 3
المطور Valentin Brosseau
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/c4software/browser-js-error-icon
عنوان صفحة المساعدة https://github.com/c4software/browser-js-error-icon/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome JS Error Icon",
    "version": "1.0",
    "description": "Little icon to remind you that something gone wrong on the current tab.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Chrome JS Error Icon",
        "default_popup": "popup.html"
    },
    "optional_permissions": [
        ""
    ]
}