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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |