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.”。
擴展截圖
下載Chromodoro擴展crx文件
下載Chromodoro擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | koiffgdgddhndlejbbgolhcmefdedgpp |
官方網址 | 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" } } } } |