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.”。
扩展截图
下载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 |
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 |
电子邮箱 | [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" } |