Auto-Reload Target URL
Reloads a target URL every specified seconds.
Cos'è Auto-Reload Target URL?
Auto-Reload Target URL è un'estensione di Chrome sviluppata da jon, e la sua funzione principale è "Reloads a target URL every specified seconds.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto-Reload Target URL
Scarica i file di estensione Auto-Reload Target URL in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Auto-Reload Target URL |
ID | fbofpnajkcpnpillmmfhggjandclmjgj |
URL Ufficiale | https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj |
Descrizione | Reloads a target URL every specified seconds. |
Dimensione del File | 36.3 KB |
Conteggio Installazioni | 1,299 |
Versione Corrente | 1.4.1 |
Ultimo Aggiornamento | 2022-06-25 |
Data di Pubblicazione | 2017-12-09 |
Valutazione | 4.60/5 Totale 5 Valutazioni |
Sviluppatore | jon |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jondb/auto-reload |
URL della Pagina di Aiuto | https://github.com/jondb/auto-reload/issues |
Lingue Supportate | 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" } } |