Chrome JS Error Icon

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

Wat is Chrome JS Error Icon?

Chrome JS Error Icon is een Chrome-extensie ontwikkeld door Valentin Brosseau, en de belangrijkste functie is "Little icon to remind you that something gone wrong on the current tab.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Chrome JS Error Icon

Download Chrome JS Error Icon-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
Officiële URL https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Beschrijving Little icon to remind you that something gone wrong on the current tab.
Bestandsgrootte 14.06 KB
Aantal Installaties 1,069
Huidige Versie 1.0
Laatst Bijgewerkt 2020-02-14
Publicatiedatum 2020-02-14
Beoordeling 3.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Valentin Brosseau
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/c4software/browser-js-error-icon
Help Pagina-URL https://github.com/c4software/browser-js-error-icon/issues
Ondersteunde Talen 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": [
        ""
    ]
}