Visible Errors

Show a notification for all JavaScript errors.

Visible Errorsคืออะไร?

Visible Errors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pixlcore.com และคุณลักษณะหลักของมันคือ "Show a notification for all JavaScript errors."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Visible Errors

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

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

                        Visible Errors is a browser extension for Chrome, which shows you every JavaScript error on your pages visually, using a notification system similar to Growl.  This can be used for developing web apps, when you may not always have the console open.  The way JavaScript was designed, a single error doesn't necessarily stop execution of your web app.  DOM events still execute, timers still fire, etc.  Sometimes an error may be thrown but you may not even notice it.  Visible Errors puts a stop to that.  As a programmer, I want to see every error thrown by my apps, whether I have the console open or not.

Visible Errors shows notifications right in the page on which the errors occurred, in the top-right corner of the window.  They have a "fixed" position, so they aren't affected by scrolling.  If you have IFRAMEs in your app, they'll appear inside the frame, when appropriate.                    

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

ชื่อ Visible Errors Visible Errors
ID mjdpgagloanghahofclbmakmohfhembp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/visible-errors/mjdpgagloanghahofclbmakmohfhembp
คำอธิบาย Show a notification for all JavaScript errors.
ขนาดไฟล์ 64.87 KB
จำนวนการติดตั้ง 109
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2014-03-10
วันที่เผยแพร่ 2014-03-10
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://pixlcore.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://pixlcore.com/visibleerrors
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Visible Errors",
    "short_name": "Visible Errors",
    "description": "Show a notification for all JavaScript errors.",
    "version": "1.0.1",
    "incognito": "spanning",
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "img\/icon_128.png",
        "64": "img\/icon_64.png",
        "48": "img\/icon_48.png",
        "32": "img\/icon_32.png",
        "16": "img\/icon_16.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}