Auto-Reload Target URL
Reloads a target URL every specified seconds.
Qu'est-ce que Auto-Reload Target URL ?
Auto-Reload Target URL est une extension Chrome développée par jon, et sa fonction principale est "Reloads a target URL every specified seconds.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Auto-Reload Target URL
Téléchargez les fichiers d'extension Auto-Reload Target URL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Auto-Reload Target URL |
ID | fbofpnajkcpnpillmmfhggjandclmjgj |
URL Officiel | https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj |
Description | Reloads a target URL every specified seconds. |
Taille du Fichier | 36.3 KB |
Nombre d'Installations | 1,299 |
Version Actuelle | 1.4.1 |
Dernière Mise à Jour | 2022-06-25 |
Date de Publication | 2017-12-09 |
Évaluation | 4.60/5 Total 5 Évaluations |
Développeur | jon |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jondb/auto-reload |
URL de la Page d'Aide | https://github.com/jondb/auto-reload/issues |
Langues Prises en Charge | 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" } } |