Chrome JS Error Icon

Little icon to remind you that something gone wrong on the current tab.

Chrome JS Error Icon là gì?

Chrome JS Error Icon là một tiện ích mở rộng Chrome được phát triển bởi Valentin Brosseau, và tính năng chính của nó là "Little icon to remind you that something gone wrong on the current tab.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrome JS Error Icon

Tải xuống các tệp mở rộng Chrome JS Error Icon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chrome JS Error Icon Chrome JS Error Icon
ID mnjomdibnloobkbgdaaplldfihfhpnbm
URL Chính Thức https://chromewebstore.google.com/detail/chrome-js-error-icon/mnjomdibnloobkbgdaaplldfihfhpnbm
Mô tả Little icon to remind you that something gone wrong on the current tab.
Kích Thước Tệp 14.06 KB
Số Lần Cài Đặt 1,069
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-02-14
Ngày Phát Hành 2020-02-14
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Valentin Brosseau
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/c4software/browser-js-error-icon
URL Trang Trợ Giúp https://github.com/c4software/browser-js-error-icon/issues
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}