ErrorAnnex

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

ErrorAnnex란 무엇입니까?

ErrorAnnex은(는) Sean Roberts에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ErrorAnnex is the easiest way to listen for errors on your products and sites around the web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ErrorAnnex 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}