JS Error Notification

Notify when get JavaScript Error.

JS Error Notificationとは何ですか?

JS Error Notificationはwatildeによって開発されたChromeの拡張機能で、その主な機能は「Notify when get JavaScript Error.」です。

拡張機能のスクリーンショット

screenshot

JS Error Notification拡張機能のCRXファイルをダウンロード

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"
}