Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
What is Simple Auto Refresh?
Simple Auto Refresh is a Chrome extension developed by tobias.samesch, and its main feature is "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval".
Extension Screenshots
Download Simple Auto Refresh Extension CRX File
Download Simple Auto Refresh 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
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
Extension Basic Information
Name | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
Official URL | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
Description | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
File Size | 10.36 KB |
Installation Count | 18 |
Current Version | 1.0.3 |
Last Updated | 2021-02-18 |
Publish Date | 2021-01-09 |
Rating | 5.00/5 Total 1 Ratings |
Developer | tobias.samesch |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Auto Refresh", "version": "1.0.3", "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval", "permissions": [ "declarativeContent", "storage", "alarms", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" } }, "icons": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" }, "manifest_version": 2 } |