Just Refresh
One-click toggle auto-refresh
Just Refresh란 무엇입니까?
Just Refresh은(는) claxtons4에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "One-click toggle auto-refresh"입니다.
확장 프로그램 스크린샷
Just Refresh 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click. Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like. If you like the extension, please leave a review and support me here: https://ko-fi.com/claxtastic New in v1.2: Apply settings to any URL from a given domain You can view the source of the extension here: https://github.com/Claxtastic/just-refresh And find my other projects here: https://github.com/Claxtastic The extension was designed overall to be minimal and straight to the point. It requires two permissions: 1. activeTab: To access the current tab and start the refresh loop. 2. storage: To locally store the current refresh interval.
확장 프로그램 기본 정보
이름 | Just Refresh |
ID | pgaimkehoiabhliejchbnamlboniofpd |
공식 URL | https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd |
설명 | One-click toggle auto-refresh |
파일 크기 | 44.83 KB |
설치 횟수 | 1,000 |
현재 버전 | 1.2 |
최근 업데이트 | 2021-03-06 |
출시 날짜 | 2019-07-23 |
평점 | 4.43/5 총 7 개의 평점 |
개발자 | claxtons4 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Claxtastic/just-refresh |
도움말 페이지 URL | https://ko-fi.com/claxtastic |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Just Refresh", "version": "1.2", "description": "One-click toggle auto-refresh", "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": [], "commands": { "toggle-refresh": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" }, "description": "Toggle refresh with keybind" } }, "background": { "scripts": [ "jquery.min.js", "background.js" ], "persistent": false }, "icons": { "128": "images\/just_refresh128.png" }, "manifest_version": 2 } |