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
官方網址 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": [
        ""
    ]
}