Auto Refresh With Notifications
chrome extension to auto refresh web page with notifications.
¿Qué es Auto Refresh With Notifications?
Auto Refresh With Notifications es una extensión de Chrome desarrollada por little.melon.dev, y su función principal es "chrome extension to auto refresh web page with notifications.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Auto Refresh With Notifications
Descarga archivos de extensión Auto Refresh With Notifications 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
Tired of manually refresh on one page with all your attention to get expected or unwanted contents? For example, refresh your shopping cart over and over to get a delivery window on amazon/instacart? You should save your valuable time for something else. Auto Refresh With Notifications will help you automatically refresh on one page until "Excludes" contents are not shown on the page. You will be notified loudly with sounds which are set in "Notification Text". In order to keep auto refreshing even you are away, please search online for how to disable your operating system's screen saver and prevent your computer from sleeping. Need any help? Twitter: @LittleMelonDev
Información Básica de la Extensión
Nombre | Auto Refresh With Notifications |
ID | hdokhoidbfbodcgoeacbddacldjgnkjc |
URL Oficial | https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc |
Descripción | chrome extension to auto refresh web page with notifications. |
Tamaño del Archivo | 66.52 KB |
Cantidad de Instalaciones | 10,102 |
Versión Actual | 0.0.4 |
Última Actualización | 2020-04-29 |
Fecha de Publicación | 2020-04-26 |
Calificación | 3.84/5 Total de 38 Calificaciones |
Desarrollador | little.melon.dev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Refresh With Notifications", "version": "0.0.4", "description": "chrome extension to auto refresh web page with notifications.", "permissions": [ "tts", "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_idle", "js": [ "lib\/js\/jquery.min.js", "contentScript.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "128": "icon.png" } } |