JS Error Notification

Notify when get JavaScript Error.

Что такое JS Error Notification?

JS Error Notification - это расширение Chrome, разработанное watilde, и его основная функция - "Notify when get JavaScript Error.".

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

screenshot

Скачать файл CRX расширения JS Error Notification

Скачайте файлы расширений JS Error Notification в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Notify when get JavaScript Error.                    

Основная информация о расширении

Название JS Error Notification JS Error Notification
ID opabhnffplkfobiihkfkdajcagnbaajb
Официальный URL https://chrome.google.com/webstore/detail/js-error-notification/opabhnffplkfobiihkfkdajcagnbaajb
Описание Notify when get JavaScript Error.
Размер файла 10.51 KB
Количество установок 421
Текущая Версия 0.1
Последнее Обновление 2014-02-26
Дата публикации 2014-02-26
Рейтинг 2.50/5 Всего 2 оценок
Разработчик watilde
Тип оплаты free
Официальный сайт расширения https://github.com/watilde/js-error-notification
URL страницы помощи https://github.com/watilde/js-error-notification/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Error Notification",
    "manifest_version": 2,
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/background_script.js"
        ]
    },
    "web_accessible_resources": [
        "\/src\/web_accessible_resources.js"
    ],
    "permissions": [
        "notifications"
    ],
    "authors": {
        "name": "Daijiro Wachi",
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/watilde\/js-error-notification"
}