JS Error Notification

Notify when get JavaScript Error.

Cos'è JS Error Notification?

JS Error Notification è un'estensione di Chrome sviluppata da watilde, e la sua funzione principale è "Notify when get JavaScript Error.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JS Error Notification

Scarica i file di estensione JS Error Notification 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

                        Notify when get JavaScript Error.                    

Informazioni di Base sull'Estensione

Nome JS Error Notification JS Error Notification
ID opabhnffplkfobiihkfkdajcagnbaajb
URL Ufficiale https://chrome.google.com/webstore/detail/js-error-notification/opabhnffplkfobiihkfkdajcagnbaajb
Descrizione Notify when get JavaScript Error.
Dimensione del File 10.51 KB
Conteggio Installazioni 421
Versione Corrente 0.1
Ultimo Aggiornamento 2014-02-26
Data di Pubblicazione 2014-02-26
Valutazione 2.50/5 Totale 2 Valutazioni
Sviluppatore watilde
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/watilde/js-error-notification
URL della Pagina di Aiuto https://github.com/watilde/js-error-notification/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Error Notification",
    "manifest_version": 2,
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/background_script.js"
        ]
    },
    "web_accessible_resources": [
        "\/src\/web_accessible_resources.js"
    ],
    "permissions": [
        "notifications"
    ],
    "authors": {
        "name": "Daijiro Wachi",
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/watilde\/js-error-notification"
}