StayFresh Page Refresher
An open-source extension that refreshes pages at set intervals
Cos'è StayFresh Page Refresher?
StayFresh Page Refresher è un'estensione di Chrome sviluppata da Michael Goen, e la sua funzione principale è "An open-source extension that refreshes pages at set intervals".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione StayFresh Page Refresher
Scarica i file di estensione StayFresh Page Refresher 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
Choose a single URL, or all URLs at a domain to refresh periodically depending on the chosen time. The extension remembers your settings and can have multiple URLs refreshing at once. I'm open to suggestions for new features or improvements, feel free to leave a comment in the support section. The source code can be found at my github: https://github.com/mikegoen/stayfresh-extension
Informazioni di Base sull'Estensione
Nome | StayFresh Page Refresher |
ID | fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
URL Ufficiale | https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
Descrizione | An open-source extension that refreshes pages at set intervals |
Dimensione del File | 101 KB |
Conteggio Installazioni | 158 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2017-02-26 |
Data di Pubblicazione | 2017-02-26 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | Michael Goen |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StayFresh Page Refresher", "description": "An open-source extension that refreshes pages at set intervals", "version": "1.0.0", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true } } |