Chrome JS Error Icon

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

Was ist Chrome JS Error Icon?

Chrome JS Error Icon ist eine Chrome-Erweiterung, die von Valentin Brosseau entwickelt wurde, und ihr Hauptmerkmal ist "Little icon to remind you that something gone wrong on the current tab.".

Erweiterungsscreenshots

screenshot

Chrome JS Error Icon-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome JS Error Icon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
Offizielle URL https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Beschreibung Little icon to remind you that something gone wrong on the current tab.
Dateigröße 14.06 KB
Installationsanzahl 1,069
Aktuelle Version 1.0
Letztes Update 2020-02-14
Veröffentlichungsdatum 2020-02-14
Bewertung 3.33/5 Insgesamt 3 Bewertungen
Entwickler Valentin Brosseau
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/c4software/browser-js-error-icon
Hilfeseite URL https://github.com/c4software/browser-js-error-icon/issues
Unterstützte Sprachen 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": [
        ""
    ]
}