Pomodoro clock

A simple pomodoro clock in your browser to hack your productivity.

Pomodoro clock란 무엇입니까?

Pomodoro clock은(는) syvo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple pomodoro clock in your browser to hack your productivity."입니다.

확장 프로그램 스크린샷

screenshot

Pomodoro clock 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use this extension to organize your work using the well-known pomodoro timer technique: work X minutes, have an Y minutes break, and so on. You can configure the duration of each streak as it suits your own pace. The extension will display a notification and play a short ring at the end of each timer.

The source code is available on Github along with a few explanations.
Please don't use reviews to submit your issues :) You can post them on Github, like enhancement requests. All constructive comments are welcome.                    

확장 프로그램 기본 정보

이름 Pomodoro clock Pomodoro clock
ID inilkfalkkngchkgodhhcmgbofohnkmg
공식 URL https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg
설명 A simple pomodoro clock in your browser to hack your productivity.
파일 크기 194 KB
설치 횟수 734
현재 버전 2.5.1
최근 업데이트 2023-05-05
출시 날짜 2020-06-07
평점 5.00/5 총 4 개의 평점
개발자 syvo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/macmorning/pomodoro-webext
도움말 페이지 URL https://github.com/macmorning/pomodoro-webext
개인정보 보호 정책 페이지 URL https://macmorning.github.io/snowtools-webext
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pomodoro clock",
    "version": "2.5.1",
    "description": "A simple pomodoro clock in your browser to hack your productivity.",
    "homepage_url": "https:\/\/github.com\/macmorning\/pomodoro-webext",
    "icons": {
        "48": "icons\/clock-48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_title": "Pomodoro",
        "default_icon": {
            "48": "icons\/clock-48.png"
        },
        "default_popup": "pomodoro.html"
    },
    "permissions": [
        "storage",
        "notifications",
        "alarms"
    ],
    "optional_permissions": [
        "downloads"
    ]
}