Chrome JS Error Icon

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

Qu'est-ce que Chrome JS Error Icon ?

Chrome JS Error Icon est une extension Chrome développée par Valentin Brosseau, et sa fonction principale est "Little icon to remind you that something gone wrong on the current tab.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chrome JS Error Icon

Téléchargez les fichiers d'extension Chrome JS Error Icon au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
URL Officiel https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Description Little icon to remind you that something gone wrong on the current tab.
Taille du Fichier 14.06 KB
Nombre d'Installations 1,069
Version Actuelle 1.0
Dernière Mise à Jour 2020-02-14
Date de Publication 2020-02-14
Évaluation 3.33/5 Total 3 Évaluations
Développeur Valentin Brosseau
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/c4software/browser-js-error-icon
URL de la Page d'Aide https://github.com/c4software/browser-js-error-icon/issues
Langues Prises en Charge 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": [
        ""
    ]
}