Just Refresh
One-click toggle auto-refresh
Co to jest Just Refresh?
Just Refresh to rozszerzenie Chrome opracowane przez claxtons4, a jego główną funkcją jest „One-click toggle auto-refresh”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Just Refresh
Pobierz pliki rozszerzeń Just 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
Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click. Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like. If you like the extension, please leave a review and support me here: https://ko-fi.com/claxtastic New in v1.2: Apply settings to any URL from a given domain You can view the source of the extension here: https://github.com/Claxtastic/just-refresh And find my other projects here: https://github.com/Claxtastic The extension was designed overall to be minimal and straight to the point. It requires two permissions: 1. activeTab: To access the current tab and start the refresh loop. 2. storage: To locally store the current refresh interval.
Podstawowe informacje o rozszerzeniu
Nazwa | Just Refresh |
ID | pgaimkehoiabhliejchbnamlboniofpd |
Oficjalny URL | https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd |
Opis | One-click toggle auto-refresh |
Rozmiar pliku | 44.83 KB |
Liczba instalacji | 1,000 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2021-03-06 |
Data Publikacji | 2019-07-23 |
Ocena | 4.43/5 Łącznie 7 Oceny |
Deweloper | claxtons4 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Claxtastic/just-refresh |
Adres URL Strony Pomocy | https://ko-fi.com/claxtastic |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Just Refresh", "version": "1.2", "description": "One-click toggle auto-refresh", "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": [], "commands": { "toggle-refresh": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" }, "description": "Toggle refresh with keybind" } }, "background": { "scripts": [ "jquery.min.js", "background.js" ], "persistent": false }, "icons": { "128": "images\/just_refresh128.png" }, "manifest_version": 2 } |