StayFresh Page Refresher
An open-source extension that refreshes pages at set intervals
Qu'est-ce que StayFresh Page Refresher ?
StayFresh Page Refresher est une extension Chrome développée par Michael Goen, et sa fonction principale est "An open-source extension that refreshes pages at set intervals".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension StayFresh Page Refresher
Téléchargez les fichiers d'extension StayFresh Page Refresher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | StayFresh Page Refresher |
ID | fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
URL Officiel | https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
Description | An open-source extension that refreshes pages at set intervals |
Taille du Fichier | 101 KB |
Nombre d'Installations | 158 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2017-02-26 |
Date de Publication | 2017-02-26 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | Michael Goen |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |