Tab Auto Refresh
Automatically refresh tabs based on custom time intervals
Tab Auto Refresh란 무엇입니까?
Tab Auto Refresh은(는) MeryDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically refresh tabs based on custom time intervals"입니다.
확장 프로그램 스크린샷
Tab Auto Refresh 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tab Auto Refresh is a browser addon that helps you automatically reload (refresh) tabs of your choice. To operate with this addon, please open toolbar popup UI while you are visiting a website. Adjust time interval in seconds (i.e. 120 sec) and you are all set. Selected tab will be reloaded based on the interval you just set. Please note reloading occurs based on tab URL not tab ID or domain. If you want to stop the current "reload" task, please press on the "stop" button at top left corner in toolbar popup UI. Alternatively you can set the interval to 0 which is equal to stop function. If you have many tabs reloading and do not want to visit each tab to clear the reloading task, please open toolbar popup UI and press on the "reset" (top right) button to do so. This button serves as a global reset button and clears the reloading task for all tabs. To report bugs, please visit addon's homepage (https://mybrowseraddon.com/tab-auto-refresh.html) and fill the bug report form.
확장 프로그램 기본 정보
이름 | Tab Auto Refresh |
ID | jaioibhbkffompljnnipmpkeafhpicpd |
공식 URL | https://chromewebstore.google.com/detail/tab-auto-refresh/jaioibhbkffompljnnipmpkeafhpicpd |
설명 | Automatically refresh tabs based on custom time intervals |
파일 크기 | 44.92 KB |
설치 횟수 | 121,876 |
현재 버전 | 0.2.0 |
최근 업데이트 | 2023-04-13 |
출시 날짜 | 2020-05-26 |
평점 | 4.06/5 총 65 개의 평점 |
개발자 | MeryDev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/tab-auto-refresh.html |
도움말 페이지 URL | https://mybrowseraddon.com/tab-auto-refresh.html |
개인정보 보호 정책 페이지 URL | https://add0n.com/policies/mery.dev.txt |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.2.0", "manifest_version": 3, "offline_enabled": true, "name": "Tab Auto Refresh", "homepage_url": "https:\/\/mybrowseraddon.com\/tab-auto-refresh.html", "description": "Automatically refresh tabs based on custom time intervals", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "alarms", "storage", "notifications" ], "action": { "default_title": "Tab Auto Refresh", "default_popup": "data\/popup\/popup.html", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |