Auto Refresh With Notifications
chrome extension to auto refresh web page with notifications.
Cos'è Auto Refresh With Notifications?
Auto Refresh With Notifications è un'estensione di Chrome sviluppata da little.melon.dev, e la sua funzione principale è "chrome extension to auto refresh web page with notifications.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto Refresh With Notifications
Scarica i file di estensione Auto Refresh With Notifications 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
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
Informazioni di Base sull'Estensione
Nome | Auto Refresh With Notifications |
ID | hdokhoidbfbodcgoeacbddacldjgnkjc |
URL Ufficiale | https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc |
Descrizione | chrome extension to auto refresh web page with notifications. |
Dimensione del File | 66.52 KB |
Conteggio Installazioni | 10,102 |
Versione Corrente | 0.0.4 |
Ultimo Aggiornamento | 2020-04-29 |
Data di Pubblicazione | 2020-04-26 |
Valutazione | 3.84/5 Totale 38 Valutazioni |
Sviluppatore | little.melon.dev |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |