Chrome JS Error Icon

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

Apa itu Chrome JS Error Icon?

Chrome JS Error Icon adalah ekstensi Chrome yang dikembangkan oleh Valentin Brosseau, dan fitur utamanya adalah "Little icon to remind you that something gone wrong on the current tab.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Chrome JS Error Icon

Unduh file ekstensi Chrome JS Error Icon dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
URL Resmi https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Deskripsi Little icon to remind you that something gone wrong on the current tab.
Ukuran File 14.06 KB
Jumlah Instalasi 1,069
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-02-14
Tanggal Publikasi 2020-02-14
Penilaian 3.33/5 Total 3 Penilaian
Pengembang Valentin Brosseau
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/c4software/browser-js-error-icon
URL Halaman Bantuan https://github.com/c4software/browser-js-error-icon/issues
Bahasa yang Didukung 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": [
        ""
    ]
}