Chrome JS Error Icon

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

O que é Chrome JS Error Icon?

Chrome JS Error Icon é uma extensão do Chrome desenvolvida por Valentin Brosseau, e sua principal característica é "Little icon to remind you that something gone wrong on the current tab.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chrome JS Error Icon

Baixe arquivos de extensão Chrome JS Error Icon no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
URL Oficial https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Descrição Little icon to remind you that something gone wrong on the current tab.
Tamanho do Arquivo 14.06 KB
Contagem de Instalações 1,069
Versão Atual 1.0
Última Atualização 2020-02-14
Data de Publicação 2020-02-14
Classificação 3.33/5 Total de 3 Avaliações
Desenvolvedor Valentin Brosseau
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/c4software/browser-js-error-icon
URL da Página de Ajuda https://github.com/c4software/browser-js-error-icon/issues
Idiomas Suportados 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": [
        ""
    ]
}