Break Timer

Enforce periodic breaks to prevent RSI / eye strain.

Break Timer란 무엇입니까?

Break Timer은(는) tomjwatson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enforce periodic breaks to prevent RSI / eye strain."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Break Timer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ------------------------------------


Break Timer is now deprecated in favour of the standalone desktop app, which is available at https://breaktimer.app.

------------------------------------

Break Timer allows you to set up customizable breaks and will remind you to take them. Taking breaks whilst working or studying is crucial in preventing RSI, eye-strain and tiredness.

Break Timer allows you to customize:
 * How long your breaks are and how often you wish to have them
 * Whether to be reminded with a simple notification or a fullscreen break window
 * Working hours so you are only reminded when you want to be.
 * Colour and text of break window and notifications
 * Whether to play a gong sound at break start and end
 * Whether to allow skipping, postponing and ending of breaks

Break Timer will also intelligently restart your break countdown (optionally) when it detects that you have not been using the computer for some amount of time.

-----------------------

BreakTimer is free and open source. The code is available at https://github.com/tom-james-watson/breaktimer and contributions and bug reports are very welcome.                    

확장 프로그램 기본 정보

이름 Break Timer Break Timer
ID hklkdbpicdmlpoiellngedpejjkmapei
공식 URL https://chromewebstore.google.com/detail/break-timer/hklkdbpicdmlpoiellngedpejjkmapei
설명 Enforce periodic breaks to prevent RSI / eye strain.
파일 크기 896 KB
설치 횟수 25,770
현재 버전 1.2.1
최근 업데이트 2020-06-24
출시 날짜 2020-06-24
평점 4.37/5 총 138 개의 평점
개발자 tomjwatson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://breaktimer.app
개인정보 보호 정책 페이지 URL https://github.com/tom-james-watson/privacy-policy/blob/main/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.2.1",
    "name": "Break Timer",
    "description": "Enforce periodic breaks to prevent RSI \/ eye strain.",
    "icons": {
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "image\/icon19.png",
            "38": "image\/icon38.png"
        },
        "default_title": "Break Time",
        "default_popup": "templates\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/vendor\/moment.min.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "idle"
    ],
    "minimum_chrome_version": "32",
    "options_ui": {
        "page": "templates\/settings.html",
        "chrome_style": true
    }
}