JS Error Notification

Notify when get JavaScript Error.

JS Error Notificationคืออะไร?

JS Error Notification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย watilde และคุณลักษณะหลักของมันคือ "Notify when get JavaScript Error."

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

screenshot

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

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

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

                        Notify when get JavaScript Error.                    

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

ชื่อ JS Error Notification JS Error Notification
ID opabhnffplkfobiihkfkdajcagnbaajb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/js-error-notification/opabhnffplkfobiihkfkdajcagnbaajb
คำอธิบาย Notify when get JavaScript Error.
ขนาดไฟล์ 10.51 KB
จำนวนการติดตั้ง 421
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2014-02-26
วันที่เผยแพร่ 2014-02-26
คะแนน 2.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา watilde
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/watilde/js-error-notification
URL หน้าช่วยเหลือ https://github.com/watilde/js-error-notification/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Error Notification",
    "manifest_version": 2,
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/background_script.js"
        ]
    },
    "web_accessible_resources": [
        "\/src\/web_accessible_resources.js"
    ],
    "permissions": [
        "notifications"
    ],
    "authors": {
        "name": "Daijiro Wachi",
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/watilde\/js-error-notification"
}