StayFresh Page Refresher
An open-source extension that refreshes pages at set intervals
Co je StayFresh Page Refresher?
StayFresh Page Refresher je rozšíření Chrome vyvinuté Michael Goen, a jeho hlavní funkcí je „An open-source extension that refreshes pages at set intervals“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření StayFresh Page Refresher
Stáhněte si soubory rozšíření StayFresh Page Refresher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | StayFresh Page Refresher |
ID | fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
Oficiální URL | https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
Popis | An open-source extension that refreshes pages at set intervals |
Velikost souboru | 101 KB |
Počet instalací | 158 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2017-02-26 |
Datum Vydání | 2017-02-26 |
Hodnocení | 3.67/5 Celkem 3 Hodnocení |
Vývojář | Michael Goen |
Typ Platby | free |
Podporované Jazyky | 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 } } |