Chrome JS Error Icon

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

Vad är Chrome JS Error Icon?

Chrome JS Error Icon är en Chrome-tillägg utvecklad av Valentin Brosseau, och dess huvudfunktion är "Little icon to remind you that something gone wrong on the current tab.".

Tilläggsskärmbilder

screenshot

Ladda ner Chrome JS Error Icon-förlängningens CRX-fil

Ladda ner Chrome JS Error Icon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
Officiell webbadress https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Beskrivning Little icon to remind you that something gone wrong on the current tab.
Filstorlek 14.06 KB
Antal Installationer 1,069
Aktuell Version 1.0
Senast Uppdaterad 2020-02-14
Publiceringsdatum 2020-02-14
Betyg 3.33/5 Totalt 3 Betyg
Utvecklare Valentin Brosseau
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/c4software/browser-js-error-icon
Hjälpsida URL https://github.com/c4software/browser-js-error-icon/issues
Stödda Språk 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": [
        ""
    ]
}