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
官方網址 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"
            ]
        }
    ]
}