Pomodoro clock

A simple pomodoro clock in your browser to hack your productivity.

Pomodoro clockとは何ですか?

Pomodoro clockはsyvoによって開発されたChromeの拡張機能で、その主な機能は「A simple pomodoro clock in your browser to hack your productivity.」です。

拡張機能のスクリーンショット

screenshot

Pomodoro clock拡張機能のCRXファイルをダウンロード

Pomodoro clock拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Use this extension to organize your work using the well-known pomodoro timer technique: work X minutes, have an Y minutes break, and so on. You can configure the duration of each streak as it suits your own pace. The extension will display a notification and play a short ring at the end of each timer.

The source code is available on Github along with a few explanations.
Please don't use reviews to submit your issues :) You can post them on Github, like enhancement requests. All constructive comments are welcome.                    

拡張機能の基本情報

名前 Pomodoro clock Pomodoro clock
ID inilkfalkkngchkgodhhcmgbofohnkmg
公式URL https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg
説明 A simple pomodoro clock in your browser to hack your productivity.
ファイルサイズ 194 KB
インストール数 734
現在のバージョン 2.5.1
最終更新日 2023-05-05
公開日 2020-06-07
評価 5.00/5 合計 4 レビュー
開発者 syvo
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/macmorning/pomodoro-webext
ヘルプページのURL https://github.com/macmorning/pomodoro-webext
プライバシーポリシーページのURL https://macmorning.github.io/snowtools-webext
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pomodoro clock",
    "version": "2.5.1",
    "description": "A simple pomodoro clock in your browser to hack your productivity.",
    "homepage_url": "https:\/\/github.com\/macmorning\/pomodoro-webext",
    "icons": {
        "48": "icons\/clock-48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_title": "Pomodoro",
        "default_icon": {
            "48": "icons\/clock-48.png"
        },
        "default_popup": "pomodoro.html"
    },
    "permissions": [
        "storage",
        "notifications",
        "alarms"
    ],
    "optional_permissions": [
        "downloads"
    ]
}