Pomodoro - MUST

Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.

Pomodoro - MUSTとは何ですか?

Pomodoro - MUSTはArminasによって開発されたChromeの拡張機能で、その主な機能は「Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.」です。

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

screenshot

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

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

拡張機能の使用方法

                        It's not easy for all of us to stay in pomodoro mode. Constant struggle to don't forget on/off timers can be discouraging. At the same time working with pomodoros brings efficiency and greatly reduces procrastination.

This extension utilizes already great pomodoro tool tomato.es and adds annoying browser notifications to constantly remind you that you MUST be in pomodoro mode.

Advantages:

Lightweight: If you close tomato.es tab extension becomes completely idle and is removed from the memory. Just re-open it again and extension will start its work!
Safe: No 3rd party calls, your data stays secure in the tab <-> extension communication channel.
Full source code can be found on https://github.com/ziogas/pomodoro-must                    

拡張機能の基本情報

名前 Pomodoro - MUST Pomodoro - MUST
ID fgfijdapfaaflemmapmdegapgmhgfkhh
公式URL https://chrome.google.com/webstore/detail/pomodoro-must/fgfijdapfaaflemmapmdegapgmhgfkhh
説明 Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.
ファイルサイズ 21.79 KB
インストール数 83
現在のバージョン 1.0.2
最終更新日 2017-06-18
公開日 2017-06-18
評価 5.00/5 合計 1 レビュー
開発者 Arminas
支払い方法 free
拡張機能のウェブサイト https://github.com/ziogas/pomodoro-must
ヘルプページのURL https://github.com/ziogas/pomodoro-must
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pomodoro - MUST",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.",
    "homepage_url": "https:\/\/github.com\/ziogas\/pomodoro-must",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "notifications",
        "tabs",
        "http:\/\/www.tomato.es\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.tomato.es\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}