Chrome JS Error Icon

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

Chrome JS Error Iconคืออะไร?

Chrome JS Error Icon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Valentin Brosseau และคุณลักษณะหลักของมันคือ "Little icon to remind you that something gone wrong on the current tab."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome JS Error Icon

ดาวน์โหลดไฟล์ส่วนขยาย Chrome JS Error Icon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
คำอธิบาย Little icon to remind you that something gone wrong on the current tab.
ขนาดไฟล์ 14.06 KB
จำนวนการติดตั้ง 1,069
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-02-14
วันที่เผยแพร่ 2020-02-14
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Valentin Brosseau
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/c4software/browser-js-error-icon
URL หน้าช่วยเหลือ https://github.com/c4software/browser-js-error-icon/issues
ภาษาที่รองรับ 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": [
        ""
    ]
}