Auto-Reload Target URL
Reloads a target URL every specified seconds.
Co to jest Auto-Reload Target URL?
Auto-Reload Target URL to rozszerzenie Chrome opracowane przez jon, a jego główną funkcją jest „Reloads a target URL every specified seconds.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Auto-Reload Target URL
Pobierz pliki rozszerzeń Auto-Reload Target URL 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
Simple tool to automatically reload the webpage in the current tab. Supports any interval from 1 second to 10000. The extension is open source and does not collect any information.
Podstawowe informacje o rozszerzeniu
Nazwa | Auto-Reload Target URL |
ID | fbofpnajkcpnpillmmfhggjandclmjgj |
Oficjalny URL | https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj |
Opis | Reloads a target URL every specified seconds. |
Rozmiar pliku | 36.3 KB |
Liczba instalacji | 1,299 |
Aktualna Wersja | 1.4.1 |
Ostatnia Aktualizacja | 2022-06-25 |
Data Publikacji | 2017-12-09 |
Ocena | 4.60/5 Łącznie 5 Oceny |
Deweloper | jon |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jondb/auto-reload |
Adres URL Strony Pomocy | https://github.com/jondb/auto-reload/issues |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto-Reload Target URL", "version": "1.4.1", "manifest_version": 3, "description": "Reloads a target URL every specified seconds.", "background": { "service_worker": "background.js" }, "action": { "default_icon": "stopwatch22.png", "default_popup": "info.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "timer.js" ] } ], "host_permissions": [ "http:\/\/*\/*" ], "permissions": [ "tabs", "storage", "alarms" ], "icons": { "16": "stopwatch16.png", "48": "stopwatch48.png", "128": "stopwatch128.png" } } |