Chrome JS Error Icon

Little icon to remind you that something gone wrong on the current tab.

Co je Chrome JS Error Icon?

Chrome JS Error Icon je rozšíření Chrome vyvinuté Valentin Brosseau, a jeho hlavní funkcí je „Little icon to remind you that something gone wrong on the current tab.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Chrome JS Error Icon

Stáhněte si soubory rozšíření Chrome JS Error Icon ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
Oficiální URL https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Popis Little icon to remind you that something gone wrong on the current tab.
Velikost souboru 14.06 KB
Počet instalací 1,069
Aktuální Verze 1.0
Poslední Aktualizace 2020-02-14
Datum Vydání 2020-02-14
Hodnocení 3.33/5 Celkem 3 Hodnocení
Vývojář Valentin Brosseau
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/c4software/browser-js-error-icon
URL Stránky Nápovědy https://github.com/c4software/browser-js-error-icon/issues
Podporované Jazyky 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": [
        ""
    ]
}