Chrome URL Notification
Notify user when the URL matches the registered patterns.
Chrome URL Notification là gì?
Chrome URL Notification là một tiện ích mở rộng Chrome được phát triển bởi smori, và tính năng chính của nó là "Notify user when the URL matches the registered patterns.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Chrome URL Notification
Tải xuống các tệp mở rộng Chrome URL Notification dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
URL Chính Thức | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
Mô tả | Notify user when the URL matches the registered patterns. |
Kích Thước Tệp | 380 KB |
Số Lần Cài Đặt | 261 |
Phiên Bản Hiện Tại | 7.0.0 |
Cập Nhật Lần Cuối | 2022-05-18 |
Ngày Phát Hành | 2020-05-12 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | smori |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/smori1983/chrome-url-notification |
Ngôn Ngữ Được Hỗ Trợ | 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" } |