Chrome URL Notification
Notify user when the URL matches the registered patterns.
¿Qué es Chrome URL Notification?
Chrome URL Notification es una extensión de Chrome desarrollada por smori, y su función principal es "Notify user when the URL matches the registered patterns.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Chrome URL Notification
Descarga archivos de extensión Chrome URL Notification en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
URL Oficial | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
Descripción | Notify user when the URL matches the registered patterns. |
Tamaño del Archivo | 380 KB |
Cantidad de Instalaciones | 261 |
Versión Actual | 7.0.0 |
Última Actualización | 2022-05-18 |
Fecha de Publicación | 2020-05-12 |
Calificación | 4.00/5 Total de 1 Calificaciones |
Desarrollador | smori |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/smori1983/chrome-url-notification |
Idiomas Soportados | 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" } |