Chrome JS Error Icon

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

Co to jest Chrome JS Error Icon?

Chrome JS Error Icon to rozszerzenie Chrome opracowane przez Valentin Brosseau, a jego główną funkcją jest „Little icon to remind you that something gone wrong on the current tab.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chrome JS Error Icon

Pobierz pliki rozszerzeń Chrome JS Error Icon w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
Oficjalny URL https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Opis Little icon to remind you that something gone wrong on the current tab.
Rozmiar pliku 14.06 KB
Liczba instalacji 1,069
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-02-14
Data Publikacji 2020-02-14
Ocena 3.33/5 Łącznie 3 Oceny
Deweloper Valentin Brosseau
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/c4software/browser-js-error-icon
Adres URL Strony Pomocy https://github.com/c4software/browser-js-error-icon/issues
Obsługiwane Języki 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": [
        ""
    ]
}