Chrome URL Notification
Notify user when the URL matches the registered patterns.
Vad är Chrome URL Notification?
Chrome URL Notification är en Chrome-tillägg utvecklad av smori, och dess huvudfunktion är "Notify user when the URL matches the registered patterns.".
Tilläggsskärmbilder
Ladda ner Chrome URL Notification-förlängningens CRX-fil
Ladda ner Chrome URL Notification-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
Officiell webbadress | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
Beskrivning | Notify user when the URL matches the registered patterns. |
Filstorlek | 380 KB |
Antal Installationer | 261 |
Aktuell Version | 7.0.0 |
Senast Uppdaterad | 2022-05-18 |
Publiceringsdatum | 2020-05-12 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | smori |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/smori1983/chrome-url-notification |
Stödda Språk | 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" } |