JavaScript Errors Notifier

Identifies JavaScript errors with minimal disruption by configurable pop-up icon and toolbar icon

JavaScript Errors Notifierとは何ですか?

JavaScript Errors NotifierはRobert Castlesによって開発されたChromeの拡張機能で、その主な機能は「Identifies JavaScript errors with minimal disruption by configurable pop-up icon and toolbar icon」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

JavaScript Errors Notifier拡張機能のCRXファイルをダウンロード

JavaScript Errors Notifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        What's new: 
* support for 'include domains' list
* option for notification icon opacity
* option to ignore console.errors (Catching console.error will hide the original exception location)
* configurable notification icon size
* higher resolution icon
* reset options to default button
* open issues - https://github.com/coinzdude/javascript-errors-notifier/commits/master
* recently closed issues - https://github.com/coinzdude/javascript-errors-notifier/issues?q=is%3Aissue+is%3Aclosed

Please feel free to contribute. To submit bugs, requests, ideas, and see known issues and changes, please see here
https://github.com/coinzdude/javascript-errors-notifier/commits/master

About this extension:
The original JavaScript Errors Notifier won me over as a tester and developer as it helps me find JavaScript errors in apps being developed before getting to my clients. The configurable options for levels of notifications, ease of copying error details, and unobtrusiveness are very important to me. The original project was delisted from the Chrome Web Store, and had aged as well, no longer being supported as a "manifest v2" project versus the newer and now required "manifest v3".  I want this project to be available in the chrome store for ease of installation for myself and my teammates. In the effort I found I could keep going with this excellent foundation and incorporate additional features like domain level filtering and options management, and some UX changes.

As a developer/tester, I am reworking and republishing this excellent utility. More details about how it started
https://github.com/barbushin/javascript-errors-notifier/issues/101.

Project source
https://github.com/coinzdude/javascript-errors-notifier

Please share feedback here 
https://github.com/coinzdude/javascript-errors-notifier/issues/new                    

拡張機能の基本情報

名前 JavaScript Errors Notifier JavaScript Errors Notifier
ID lplhclpeegjedapdliokcacmphgcnlnd
公式URL https://chromewebstore.google.com/detail/javascript-errors-notifie/lplhclpeegjedapdliokcacmphgcnlnd
説明 Identifies JavaScript errors with minimal disruption by configurable pop-up icon and toolbar icon
ファイルサイズ 924 KB
インストール数 1,355
現在のバージョン 4.0 beta 15
最終更新日 2023-04-11
公開日 2023-03-06
開発者 Robert Castles
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/coinzdude/javascript-errors-notifier?organization=coinzdude&organization=coinzdude
ヘルプページのURL https://github.com/coinzdude/javascript-errors-notifier/issues/new
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JavaScript Errors Notifier",
    "short_name": "js_error",
    "description": "Identifies JavaScript errors with minimal disruption by configurable pop-up icon and toolbar icon",
    "version": "4.0.0.15",
    "version_name": "4.0 beta 15",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "world": "MAIN",
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "code-to-inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "icons": {
        "128": "img\/error_128.png",
        "16": "img\/error_16.png",
        "48": "img\/error_48.png"
    },
    "incognito": "spanning",
    "action": {
        "default_icon": {
            "19": "img\/error_19_disabled.png",
            "38": "img\/error_38_disabled.png"
        },
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/error_64.png",
                "img\/error_38.png",
                "img\/error_19.png",
                "img\/error_128.png",
                "popup.html",
                "options.html",
                "code-to-inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}