Auto Refresh With Notifications
chrome extension to auto refresh web page with notifications.
Hvad er Auto Refresh With Notifications?
Auto Refresh With Notifications er en Chrome-udvidelse udviklet af little.melon.dev, og dens hovedfunktion er "chrome extension to auto refresh web page with notifications.".
Udvidelsesskærmbilleder
Download Auto Refresh With Notifications-udvidelses-CRX-fil
Download Auto Refresh With Notifications-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Auto Refresh With Notifications |
ID | hdokhoidbfbodcgoeacbddacldjgnkjc |
Officiel URL | https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc |
Beskrivelse | chrome extension to auto refresh web page with notifications. |
Filstørrelse | 66.52 KB |
Antal Installationer | 10,102 |
Nuværende Version | 0.0.4 |
Senest Opdateret | 2020-04-29 |
Udgivelsesdato | 2020-04-26 |
Bedømmelse | 3.84/5 Samlet 38 Bedømmelser |
Udvikler | little.melon.dev |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |