Easy Auto Refresh
Auto-refresh and auto-reload pages after any number of seconds.
Τι είναι το Easy Auto Refresh;
Το Easy Auto Refresh είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.dummysoftware.com, και η κύρια λειτουργία του είναι "Auto-refresh and auto-reload pages after any number of seconds.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Easy Auto Refresh
Λήψη αρχείων επέκτασης Easy Auto Refresh σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Automatically reloads web pages after any number of seconds. Features: * Refresh pages after a set number of seconds. * Set different delays per page or tab. * Remembers your settings per page. * Remembers web page scroll position. Simply enter the number of seconds between reloads and click Start. You can specify different settings per tab. Preferences are saved per web page URL. The countdown pauses while typing. To stop refreshing of the tab, just click Stop. Register your copy of Easy Auto Refresh to unlock advanced options, including: * Save preferences per web page URL or per web site domain. * Enable random countdown intervals. * Choose specific times of day. * Reload all tabs in the window. * Automatically click a button, link, or element on the page. * Navigate to a url from a list at each countdown interval. * Show a notification and play a sound when text is found in the page. * Display the last and next refresh time. * Clear cache. * Receive access to future enhancements. Privacy Policy and Terms of Service By installing this add-on, you agree to the following privacy policy http://dummysoftware.com/chrome-privacy.html
Βασικές Πληροφορίες Επέκτασης
Όνομα | Easy Auto Refresh |
ID | aabcgdmkeabbnleenpncegpcngjpnjkc |
Επίσημο URL | https://chromewebstore.google.com/detail/easy-auto-refresh/aabcgdmkeabbnleenpncegpcngjpnjkc |
Περιγραφή | Auto-refresh and auto-reload pages after any number of seconds. |
Μέγεθος Αρχείου | 53 KB |
Αριθμός Εγκαταστάσεων | 1,435,889 |
Τρέχουσα Έκδοση | 6.4 |
Τελευταία Ενημέρωση | 2024-02-08 |
Ημερομηνία Δημοσίευσης | 2019-08-09 |
Αξιολόγηση | 3.92/5 Συνολικά 1971 Αξιολογήσεις |
Προγραμματιστής | https://www.dummysoftware.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.dummysoftware.com/easy-auto-refresh.html |
Διεύθυνση URL της Σελίδας Βοήθειας | http://www.dummysoftware.com/easy-auto-refresh.html |
URL της Σελίδας Πολιτικής Απορρήτου | http://dummysoftware.com/chrome-privacy.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Easy Auto Refresh", "version": "6.4", "manifest_version": 3, "description": "Auto-refresh and auto-reload pages after any number of seconds.", "background": { "service_worker": "scripts\/background.js" }, "action": { "default_icon": { "38": "images\/refresh-off-38.png" }, "default_title": "Easy Auto Refresh", "default_popup": "popup.html" }, "permissions": [ "tabs", "browsingData", "notifications", "storage", "scripting", "alarms" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/keypress.js" ], "run_at": "document_start" } ], "icons": { "48": "images\/easy-auto-refresh-48x48.png", "128": "images\/easy-auto-refresh-128x128.png" } } |