Chrome URL Notification
Notify user when the URL matches the registered patterns.
Cos'è Chrome URL Notification?
Chrome URL Notification è un'estensione di Chrome sviluppata da smori, e la sua funzione principale è "Notify user when the URL matches the registered patterns.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chrome URL Notification
Scarica i file di estensione Chrome URL Notification in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
URL Ufficiale | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
Descrizione | Notify user when the URL matches the registered patterns. |
Dimensione del File | 380 KB |
Conteggio Installazioni | 261 |
Versione Corrente | 7.0.0 |
Ultimo Aggiornamento | 2022-05-18 |
Data di Pubblicazione | 2020-05-12 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | smori |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/smori1983/chrome-url-notification |
Lingue Supportate | 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" } |