Chrome JS Error Icon

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

Cos'è Chrome JS Error Icon?

Chrome JS Error Icon è un'estensione di Chrome sviluppata da Valentin Brosseau, e la sua funzione principale è "Little icon to remind you that something gone wrong on the current tab.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chrome JS Error Icon

Scarica i file di estensione Chrome JS Error Icon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
URL Ufficiale https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Descrizione Little icon to remind you that something gone wrong on the current tab.
Dimensione del File 14.06 KB
Conteggio Installazioni 1,069
Versione Corrente 1.0
Ultimo Aggiornamento 2020-02-14
Data di Pubblicazione 2020-02-14
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore Valentin Brosseau
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/c4software/browser-js-error-icon
URL della Pagina di Aiuto https://github.com/c4software/browser-js-error-icon/issues
Lingue Supportate 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": [
        ""
    ]
}