Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
Co to jest Simple Auto Refresh?
Simple Auto Refresh to rozszerzenie Chrome opracowane przez tobias.samesch, a jego główną funkcją jest „lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Simple Auto Refresh
Pobierz pliki rozszerzeń Simple Auto Refresh w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
Podstawowe informacje o rozszerzeniu
Nazwa | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
Oficjalny URL | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
Opis | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
Rozmiar pliku | 10.36 KB |
Liczba instalacji | 18 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2021-02-18 |
Data Publikacji | 2021-01-09 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | tobias.samesch |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |