Auto-Reload Target URL
Reloads a target URL every specified seconds.
Co je Auto-Reload Target URL?
Auto-Reload Target URL je rozšíření Chrome vyvinuté jon, a jeho hlavní funkcí je „Reloads a target URL every specified seconds.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Auto-Reload Target URL
Stáhněte si soubory rozšíření Auto-Reload Target URL ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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. Základní Informace o Rozšíření
| Název | |
| ID | fbofpnajkcpnpillmmfhggjandclmjgj |
| Oficiální URL | https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj |
| Popis | Reloads a target URL every specified seconds. |
| Velikost souboru | 36.3 KB |
| Počet instalací | 1,299 |
| Aktuální Verze | 1.4.1 |
| Poslední Aktualizace | 2022-06-25 |
| Datum Vydání | 2017-12-09 |
| Hodnocení | 4.60/5 Celkem 5 Hodnocení |
| Vývojář | jon |
| [email protected] | |
| Typ Platby | free |
| Webové stránky Rozšíření | https://github.com/jondb/auto-reload |
| URL Stránky Nápovědy | https://github.com/jondb/auto-reload/issues |
| Podporované Jazyky | 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"
}
} | |