Auto-Reload Target URL
Reloads a target URL every specified seconds.
Auto-Reload Target URLとは何ですか?
Auto-Reload Target URLはjonによって開発されたChromeの拡張機能で、その主な機能は「Reloads a target URL every specified seconds.」です。
拡張機能のスクリーンショット
Auto-Reload Target URL拡張機能のCRXファイルをダウンロード
Auto-Reload Target URL拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Auto-Reload Target URL |
ID | fbofpnajkcpnpillmmfhggjandclmjgj |
公式URL | https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj |
説明 | Reloads a target URL every specified seconds. |
ファイルサイズ | 36.3 KB |
インストール数 | 1,299 |
現在のバージョン | 1.4.1 |
最終更新日 | 2022-06-25 |
公開日 | 2017-12-09 |
評価 | 4.60/5 合計 5 レビュー |
開発者 | jon |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/jondb/auto-reload |
ヘルプページのURL | https://github.com/jondb/auto-reload/issues |
対応言語 | 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" } } |