Chromodoro

Simple Pomodoro timer. It can set your status in your Slack workspace.

Chromodoro란 무엇입니까?

Chromodoro은(는) https://chromodoro.boxi.hu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple Pomodoro timer. It can set your status in your Slack workspace."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Features:
 - One click start (or use Alt+Shift+P)
 - Customizable break lengths
 - User defined number of Pomodoro sessions before long break
 - Slack sync
 - Customizable Slack status text during Pomodoro session 
 - Set your status icon to a tomato on Slack during session 
 - Set "Do Not Disturb" during session (configurable)
 - "Pomodoro ringer" sound effect when a session starts/finishes (configurable)

############ CHANGELOG ############
2018-11-25
 - "disable" icon for 5 seconds after Pomodoro session starts, to prevent Slack API rate limit
 - Set error messages (Like.: authentication error, rate_limit, etc.)
2018-11-30
 - Bugfix: snooze_not_active error (thx Istvan)
2019-07-21
 - New icons to compliance the Google Branding Guidelines
###################################

Web: http://chromodoro.boxi.hu/
E-mail: [email protected]                    

확장 프로그램 기본 정보

이름 Chromodoro Chromodoro
ID koiffgdgddhndlejbbgolhcmefdedgpp
공식 URL https://chromewebstore.google.com/detail/chromodoro/koiffgdgddhndlejbbgolhcmefdedgpp
설명 Simple Pomodoro timer. It can set your status in your Slack workspace.
파일 크기 473 KB
설치 횟수 868
현재 버전 0.0.5
최근 업데이트 2019-07-22
출시 날짜 2019-07-21
평점 5.00/5 총 1 개의 평점
개발자 https://chromodoro.boxi.hu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://chromodoro.boxi.hu/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chromodoro",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Simple Pomodoro timer. It can set your status in your Slack workspace.",
    "permissions": [
        "https:\/\/slack.com\/*",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/icon_colored.png",
        "48": "images\/icon_colored.png",
        "128": "images\/icon_colored.png"
    },
    "browser_action": {
        "default_title": "Chromodoro",
        "default_icon": "images\/icon_grey.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.boxi.hu\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Shift+P",
                "mac": "Alt+Shift+P",
                "chromeos": "Alt+Shift+P",
                "linux": "Alt+Shift+P"
            }
        }
    }
}