Chrome URL Notification

Notify user when the URL matches the registered patterns.

Chrome URL Notificationとは何ですか?

Chrome URL Notificationはsmoriによって開発されたChromeの拡張機能で、その主な機能は「Notify user when the URL matches the registered patterns.」です。

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

screenshot
screenshot

Chrome URL Notification拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Usage

Register URL pattern and message ( and some settings ).

You can use '*' like https://*.example.com/

- Message will be shown when browsing URL matches with registered pattern.
- Display position of message: top / bottom / top left / top right / bottom left / bottom right                    

拡張機能の基本情報

名前 Chrome URL Notification Chrome URL Notification
ID gdnmbdajkmabbkejinjnjdobmkbfhonn
公式URL https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn
説明 Notify user when the URL matches the registered patterns.
ファイルサイズ 380 KB
インストール数 261
現在のバージョン 7.0.0
最終更新日 2022-05-18
公開日 2020-05-12
評価 4.00/5 合計 1 レビュー
開発者 smori
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/smori1983/chrome-url-notification
対応言語 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chrome URL Notification",
    "description": "Notify user when the URL matches the registered patterns.",
    "version": "7.0.0",
    "icons": {
        "16": "image\/icon_16.png",
        "48": "image\/icon_48.png",
        "128": "image\/icon_128.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "image\/icon_16.png",
        "default_title": "Chrome URL Notification",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "html\/options.html"
}