Chrome URL Notification
Notify user when the URL matches the registered patterns.
Qu'est-ce que Chrome URL Notification ?
Chrome URL Notification est une extension Chrome développée par smori, et sa fonction principale est "Notify user when the URL matches the registered patterns.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chrome URL Notification
Téléchargez les fichiers d'extension Chrome URL Notification au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
URL Officiel | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
Description | Notify user when the URL matches the registered patterns. |
Taille du Fichier | 380 KB |
Nombre d'Installations | 261 |
Version Actuelle | 7.0.0 |
Dernière Mise à Jour | 2022-05-18 |
Date de Publication | 2020-05-12 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | smori |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/smori1983/chrome-url-notification |
Langues Prises en Charge | 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" } |