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 |
官方網址 | 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 |
電子郵箱 | [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" } } |