Auto Refresh With Notifications
chrome extension to auto refresh web page with notifications.
Τι είναι το Auto Refresh With Notifications;
Το Auto Refresh With Notifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον little.melon.dev, και η κύρια λειτουργία του είναι "chrome extension to auto refresh web page with notifications.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Auto Refresh With Notifications
Λήψη αρχείων επέκτασης Auto Refresh With Notifications σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Auto Refresh With Notifications |
ID | hdokhoidbfbodcgoeacbddacldjgnkjc |
Επίσημο URL | https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc |
Περιγραφή | chrome extension to auto refresh web page with notifications. |
Μέγεθος Αρχείου | 66.52 KB |
Αριθμός Εγκαταστάσεων | 10,102 |
Τρέχουσα Έκδοση | 0.0.4 |
Τελευταία Ενημέρωση | 2020-04-29 |
Ημερομηνία Δημοσίευσης | 2020-04-26 |
Αξιολόγηση | 3.84/5 Συνολικά 38 Αξιολογήσεις |
Προγραμματιστής | little.melon.dev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |