Chrome URL Notification
Notify user when the URL matches the registered patterns.
What is Chrome URL Notification?
Chrome URL Notification is a Chrome extension developed by smori, and its main feature is "Notify user when the URL matches the registered patterns.".
Extension Screenshots
Download Chrome URL Notification Extension CRX File
Download Chrome URL Notification extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
Official URL | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
Description | Notify user when the URL matches the registered patterns. |
File Size | 380 KB |
Installation Count | 261 |
Current Version | 7.0.0 |
Last Updated | 2022-05-18 |
Publish Date | 2020-05-12 |
Rating | 4.00/5 Total 1 Ratings |
Developer | smori |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/smori1983/chrome-url-notification |
Supported Languages | 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" } |