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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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": [
        ""
    ]
}