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은(는) Valentin Brosseau에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Little icon to remind you that something gone wrong on the current tab."입니다.

확장 프로그램 스크린샷

screenshot

Chrome JS Error Icon 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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": [
        ""
    ]
}