Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
Wat is Simple Auto Refresh?
Simple Auto Refresh is een Chrome-extensie ontwikkeld door tobias.samesch, en de belangrijkste functie is "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval".
Extensie Screenshots
Download het CRX-bestand van de extensie Simple Auto Refresh
Download Simple Auto Refresh-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
Basisinformatie over de Extensie
Naam | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
Officiële URL | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
Beschrijving | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
Bestandsgrootte | 10.36 KB |
Aantal Installaties | 18 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2021-02-18 |
Publicatiedatum | 2021-01-09 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | tobias.samesch |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |