JS Error Notification

Notify when get JavaScript Error.

JS Error Notification là gì?

JS Error Notification là một tiện ích mở rộng Chrome được phát triển bởi watilde, và tính năng chính của nó là "Notify when get JavaScript Error.".

Ả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 JS Error Notification

Tải xuống các tệp mở rộng JS Error Notification 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

                        Notify when get JavaScript Error.                    

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

Tên JS Error Notification JS Error Notification
ID opabhnffplkfobiihkfkdajcagnbaajb
URL Chính Thức https://chrome.google.com/webstore/detail/js-error-notification/opabhnffplkfobiihkfkdajcagnbaajb
Mô tả Notify when get JavaScript Error.
Kích Thước Tệp 10.51 KB
Số Lần Cài Đặt 421
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2014-02-26
Ngày Phát Hành 2014-02-26
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển watilde
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/watilde/js-error-notification
URL Trang Trợ Giúp https://github.com/watilde/js-error-notification/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Error Notification",
    "manifest_version": 2,
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/background_script.js"
        ]
    },
    "web_accessible_resources": [
        "\/src\/web_accessible_resources.js"
    ],
    "permissions": [
        "notifications"
    ],
    "authors": {
        "name": "Daijiro Wachi",
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/watilde\/js-error-notification"
}