JS Error Notification

Notify when get JavaScript Error.

What is JS Error Notification?

JS Error Notification is a Chrome extension developed by watilde, and its main feature is "Notify when get JavaScript Error.".

Extension Screenshots

screenshot

Download JS Error Notification Extension CRX File

Download JS Error Notification extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Notify when get JavaScript Error.                    

Extension Basic Information

Name JS Error Notification JS Error Notification
ID opabhnffplkfobiihkfkdajcagnbaajb
Official URL https://chrome.google.com/webstore/detail/js-error-notification/opabhnffplkfobiihkfkdajcagnbaajb
Description Notify when get JavaScript Error.
File Size 10.51 KB
Installation Count 421
Current Version 0.1
Last Updated 2014-02-26
Publish Date 2014-02-26
Rating 2.50/5 Total 2 Ratings
Developer watilde
Payment Type free
Extension Website https://github.com/watilde/js-error-notification
Help Page URL https://github.com/watilde/js-error-notification/issues
Supported Languages 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"
}