Chromodoro

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

Chromodoro là gì?

Chromodoro là một tiện ích mở rộng Chrome được phát triển bởi https://chromodoro.boxi.hu, và tính năng chính của nó là "Simple Pomodoro timer. It can set your status in your Slack workspace.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chromodoro

Tải xuống các tệp mở rộng Chromodoro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chromodoro Chromodoro
ID koiffgdgddhndlejbbgolhcmefdedgpp
URL Chính Thức https://chromewebstore.google.com/detail/chromodoro/koiffgdgddhndlejbbgolhcmefdedgpp
Mô tả Simple Pomodoro timer. It can set your status in your Slack workspace.
Kích Thước Tệp 473 KB
Số Lần Cài Đặt 868
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2019-07-22
Ngày Phát Hành 2019-07-21
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://chromodoro.boxi.hu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://chromodoro.boxi.hu/
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}