StayFresh Page Refresher
An open-source extension that refreshes pages at set intervals
What is StayFresh Page Refresher?
StayFresh Page Refresher is a Chrome extension developed by Michael Goen, and its main feature is "An open-source extension that refreshes pages at set intervals".
Extension Screenshots
Download StayFresh Page Refresher Extension CRX File
Download StayFresh Page Refresher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | StayFresh Page Refresher |
ID | fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
Official URL | https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
Description | An open-source extension that refreshes pages at set intervals |
File Size | 101 KB |
Installation Count | 158 |
Current Version | 1.0.0 |
Last Updated | 2017-02-26 |
Publish Date | 2017-02-26 |
Rating | 3.67/5 Total 3 Ratings |
Developer | Michael Goen |
Payment Type | free |
Supported Languages | 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 } } |