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はValentin Brosseauによって開発されたChromeの拡張機能で、その主な機能は「Little icon to remind you that something gone wrong on the current tab.」です。

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

screenshot

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

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
Eメール [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": [
        ""
    ]
}