Timer 25: the Minimalist Timer
A minimalist 25 minutes timer. Simple, reliable and easy to use.
Timer 25: the Minimalist Timer란 무엇입니까?
Timer 25: the Minimalist Timer은(는) https://kyan001.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A minimalist 25 minutes timer. Simple, reliable and easy to use."입니다.
확장 프로그램 스크린샷
Timer 25: the Minimalist Timer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
> Focus on one dedicated function, and make it great. • 1 click to set a 25 Minute Timer. • Perfect for Pomodoro Technique / Tomato Timer. • Saving your time and lifting your efficiency now! • Nearly 0 Memory/CPU consumption with a better experience! • Open source software How To Use: • START from a fixed 25:00. • STOP at 0:00 and inform you by a popup alert/notification. • When counting down, click again to CANCEL the timer. Extra Functions: • Enter "timer" in Chrome's address bar and press TAB to start a non-25 minutes timer. • [Optional] Play a sound when time's up. • [Optional] Click is needed to dismiss the notification. Code & Bug Report: • Github Project Page: https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25 • Help & Bug Report: https://github.com/kyan001/WebExtensions/issues • Updates: https://github.com/kyan001/WebExtensions/blob/master/ChromeExt_Timer25/UPDATES.md
확장 프로그램 기본 정보
이름 | Timer 25: the Minimalist Timer |
ID | gmdbcklinofignhfmibchnmgjcocccbh |
공식 URL | https://chromewebstore.google.com/detail/timer-25-the-minimalist-t/gmdbcklinofignhfmibchnmgjcocccbh |
설명 | A minimalist 25 minutes timer. Simple, reliable and easy to use. |
파일 크기 | 85.77 KB |
설치 횟수 | 10,631 |
현재 버전 | 1.15.5 |
최근 업데이트 | 2020-08-25 |
출시 날짜 | 2020-05-02 |
평점 | 4.62/5 총 42 개의 평점 |
개발자 | https://kyan001.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.kyan001.com |
도움말 페이지 URL | https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25 |
지원되는 언어 | de,en,fr,es,it,pl,ru,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.15.5", "short_name": "Timer25", "description": "__MSG_extDesc__", "manifest_version": 2, "icons": { "16": "Timer_16.png", "128": "Timer_128.png" }, "omnibox": { "keyword": "Timer" }, "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "notifications", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": false }, "browser_action": { "default_icon": "Timer.png", "default_title": "Timer 25" }, "default_locale": "en", "offline_enabled": true } |