Pomodoro Clock
Simple background timer for productivity
Pomodoro Clockとは何ですか?
Pomodoro ClockはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Simple background timer for productivity」です。
拡張機能のスクリーンショット
Pomodoro Clock拡張機能のCRXファイルをダウンロード
Pomodoro Clock拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Thanks to the timer, you can focus on work. 1. Select the duration of the work session and the rest session and turn on the timer 2. Take care of what you wanted to focus on 3. The timer will notify you of the start time of the sound, and then the start time of the new work session 4. Repeat the required number of sessions to achieve the result Work and rest cycles help minimize procrastination and make better use of your time. In a working session, you complete the task without being distracted. In the rest session, do what you want. Do not forget that this is just a tool, everything is in your hands.
拡張機能の基本情報
名前 | Pomodoro Clock |
ID | pfbgmmjloigajfgnfmgmdbafaedpmlml |
公式URL | https://chromewebstore.google.com/detail/pomodoro-clock/pfbgmmjloigajfgnfmgmdbafaedpmlml |
説明 | Simple background timer for productivity |
ファイルサイズ | 54.19 KB |
インストール数 | 11 |
現在のバージョン | 1.1.0 |
最終更新日 | 2020-06-12 |
公開日 | 2020-06-12 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Unknown |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pomodoro Clock", "version": "1.1.0", "description": "Simple background timer for productivity", "manifest_version": 2, "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "img\/tomato16.png", "32": "img\/tomato32.png", "48": "img\/tomato48.png", "128": "img\/tomato128.png" } }, "icons": { "16": "img\/tomato16.png", "32": "img\/tomato32.png", "48": "img\/tomato48.png", "128": "img\/tomato128.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html" } |