Refresher
Auto-Refresh tabs every N minutes.
What is Refresher?
Refresher is a Chrome extension developed by S.Pyzhov, and its main feature is "Auto-Refresh tabs every N minutes.".
Extension Screenshots
Download Refresher Extension CRX File
Download 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
Refresher - refreshes selected tab every selected interval of the time. You can select any duration in a minutes or seconds.
Extension Basic Information
Name | Refresher |
ID | fonajkmbfnhimbdcohgbofnmgcfifmal |
Official URL | https://chromewebstore.google.com/detail/refresher/fonajkmbfnhimbdcohgbofnmgcfifmal |
Description | Auto-Refresh tabs every N minutes. |
File Size | 44.18 KB |
Installation Count | 11 |
Current Version | 1.0 |
Last Updated | 2019-11-30 |
Publish Date | 2019-11-29 |
Developer | S.Pyzhov |
Payment Type | free |
Extension Website | https://github.com/spyzhov/refresher |
Help Page URL | https://github.com/spyzhov/refresher/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Refresher", "description": "Auto-Refresh tabs every N minutes.", "version": "1.0", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "src\/storage.js", "src\/background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |