Pomodoro - MUST

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

Pomodoro - MUST là gì?

Pomodoro - MUST là một tiện ích mở rộng Chrome được phát triển bởi Arminas, và tính năng chính của nó là "Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pomodoro - MUST

Tải xuống các tệp mở rộng Pomodoro - MUST dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pomodoro - MUST Pomodoro - MUST
ID fgfijdapfaaflemmapmdegapgmhgfkhh
URL Chính Thức https://chrome.google.com/webstore/detail/pomodoro-must/fgfijdapfaaflemmapmdegapgmhgfkhh
Mô tả Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.
Kích Thước Tệp 21.79 KB
Số Lần Cài Đặt 83
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2017-06-18
Ngày Phát Hành 2017-06-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Arminas
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ziogas/pomodoro-must
URL Trang Trợ Giúp https://github.com/ziogas/pomodoro-must
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}