Chromodoro
Simple Pomodoro timer. It can set your status in your Slack workspace.
Qu'est-ce que Chromodoro ?
Chromodoro est une extension Chrome développée par https://chromodoro.boxi.hu, et sa fonction principale est "Simple Pomodoro timer. It can set your status in your Slack workspace.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chromodoro
Téléchargez les fichiers d'extension Chromodoro au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | Chromodoro |
ID | koiffgdgddhndlejbbgolhcmefdedgpp |
URL Officiel | https://chromewebstore.google.com/detail/chromodoro/koiffgdgddhndlejbbgolhcmefdedgpp |
Description | Simple Pomodoro timer. It can set your status in your Slack workspace. |
Taille du Fichier | 473 KB |
Nombre d'Installations | 868 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2019-07-22 |
Date de Publication | 2019-07-21 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://chromodoro.boxi.hu |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://chromodoro.boxi.hu/ |
Langues Prises en Charge | 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" } } } } |