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
官方網址 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
電子郵箱 [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"
}