Chrome URL Notification
Notify user when the URL matches the registered patterns.
Chrome URL Notificationคืออะไร?
Chrome URL Notification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย smori และคุณลักษณะหลักของมันคือ "Notify user when the URL matches the registered patterns."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome URL Notification
ดาวน์โหลดไฟล์ส่วนขยาย 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" } |