Easy Auto Refresh
Auto-refresh and auto-reload pages after any number of seconds.
Easy Auto Refreshとは何ですか?
Easy Auto Refreshはhttps://www.dummysoftware.comによって開発されたChromeの拡張機能で、その主な機能は「Auto-refresh and auto-reload pages after any number of seconds.」です。
拡張機能のスクリーンショット
Easy Auto Refresh拡張機能のCRXファイルをダウンロード
Easy Auto Refresh拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Automatically reloads web pages after any number of seconds. Features: * Refresh pages after a set number of seconds. * Set different delays per page or tab. * Remembers your settings per page. * Remembers web page scroll position. Simply enter the number of seconds between reloads and click Start. You can specify different settings per tab. Preferences are saved per web page URL. The countdown pauses while typing. To stop refreshing of the tab, just click Stop. Register your copy of Easy Auto Refresh to unlock advanced options, including: * Save preferences per web page URL or per web site domain. * Enable random countdown intervals. * Choose specific times of day. * Reload all tabs in the window. * Automatically click a button, link, or element on the page. * Navigate to a url from a list at each countdown interval. * Show a notification and play a sound when text is found in the page. * Display the last and next refresh time. * Clear cache. * Receive access to future enhancements. Privacy Policy and Terms of Service By installing this add-on, you agree to the following privacy policy http://dummysoftware.com/chrome-privacy.html
拡張機能の基本情報
名前 | Easy Auto Refresh |
ID | aabcgdmkeabbnleenpncegpcngjpnjkc |
公式URL | https://chromewebstore.google.com/detail/easy-auto-refresh/aabcgdmkeabbnleenpncegpcngjpnjkc |
説明 | Auto-refresh and auto-reload pages after any number of seconds. |
ファイルサイズ | 53 KB |
インストール数 | 1,435,889 |
現在のバージョン | 6.4 |
最終更新日 | 2024-02-08 |
公開日 | 2019-08-09 |
評価 | 3.92/5 合計 1971 レビュー |
開発者 | https://www.dummysoftware.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://www.dummysoftware.com/easy-auto-refresh.html |
ヘルプページのURL | http://www.dummysoftware.com/easy-auto-refresh.html |
プライバシーポリシーページのURL | http://dummysoftware.com/chrome-privacy.html |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Easy Auto Refresh", "version": "6.4", "manifest_version": 3, "description": "Auto-refresh and auto-reload pages after any number of seconds.", "background": { "service_worker": "scripts\/background.js" }, "action": { "default_icon": { "38": "images\/refresh-off-38.png" }, "default_title": "Easy Auto Refresh", "default_popup": "popup.html" }, "permissions": [ "tabs", "browsingData", "notifications", "storage", "scripting", "alarms" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/keypress.js" ], "run_at": "document_start" } ], "icons": { "48": "images\/easy-auto-refresh-48x48.png", "128": "images\/easy-auto-refresh-128x128.png" } } |