ErrorAnnex

ErrorAnnex is the easiest way to listen for errors on your products and sites around the web.

ErrorAnnexคืออะไร?

ErrorAnnex เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sean Roberts และคุณลักษณะหลักของมันคือ "ErrorAnnex is the easiest way to listen for errors on your products and sites around the web."

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

screenshot
screenshot

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

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

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

                        ErrorAnnex is an extension that allows you to be notified when a JavaScript Error occurs on a web page. Simple.

-- ✔ Get notified of errors immediately
-- ✔ Capture the error source and message
-- ✔ Enable popup notifications for all or a specific domain
-- ✔ Receive the counts of duplicate errors
-- ✔ Know the current error state of a page at all times
-- ✔ Catch all errors residing in the top frame or in nested iframes


Whether you want to make sure your website, ad frames, newly shipped code, or curiosity are good to go, we can help you try to answer those questions.


-- Ready to get going? --

Install and you can immediately interact with the extension to see the error status of the given page you are on. 

When your interactions or navigation on a page invokes an error, you'll be notified immediately with details that were given about the error.

Clicking the extension icon will open the page's error details.


-- Test it out --

This page has an error: 
http://jsfiddle.net/hc5vodno/                    

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

ชื่อ ErrorAnnex ErrorAnnex
ID nmoaecckealdhaphagjdkpjeodgffmeg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/errorannex/nmoaecckealdhaphagjdkpjeodgffmeg
คำอธิบาย ErrorAnnex is the easiest way to listen for errors on your products and sites around the web.
ขนาดไฟล์ 32.19 KB
จำนวนการติดตั้ง 124
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2015-08-07
วันที่เผยแพร่ 2015-08-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Sean Roberts
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ErrorAnnex",
    "short_name": "ErrorAnnex",
    "description": "ErrorAnnex is the easiest way to listen for errors on your products and sites around the web.",
    "version": "1.0.3",
    "permissions": [
        "tabs",
        "",
        "webNavigation",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16_d.png",
            "19": "icons\/icon19_d.png",
            "38": "icons\/icon38_d.png",
            "48": "icons\/icon48_d.png",
            "128": "icons\/icon128_d.png"
        },
        "default_popup": "interface.html"
    },
    "icons": {
        "16": "icons\/icon16_d.png",
        "19": "icons\/icon19_d.png",
        "38": "icons\/icon38_d.png",
        "48": "icons\/icon48_d.png",
        "128": "icons\/icon128_d.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "offline_enabled": true,
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}