Tomato Clock

A simple browser extension for managing your productivity.

Tomato Clock là gì?

Tomato Clock là một tiện ích mở rộng Chrome được phát triển bởi Samuel Jun, và tính năng chính của nó là "A simple browser extension for managing your productivity.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Tomato Clock 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

                        Tomato Clock is a simple browser extension for managing your productivity. Use the extension to break down your work into 25 minute 'Tomato' intervals separated by short breaks. Use the long break after completing four Tomato intervals.

Features:

* Customizable timer lengths
* Browser notifications
* Stat tracking

You can customize the length of the Tomatoes and breaks in the extension page. The extension uses the default browser notification system, accompanied by a sound, to let you know when the timer is over. The extension also features stats for tracking how many Tomatoes you complete.

---

Please file any issues or feature requests at https://github.com/samueljun/tomato-clock/issues.

---

Due to a trademark complaint, the extension was renamed from Pomodoro Clock to Tomato Clock.                    

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

Tên Tomato Clock Tomato Clock
ID enemipdanmallpjakiehedcgjmibjihj
URL Chính Thức https://chromewebstore.google.com/detail/tomato-clock/enemipdanmallpjakiehedcgjmibjihj
Mô tả A simple browser extension for managing your productivity.
Kích Thước Tệp 1.41 MB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 6.0.2
Cập Nhật Lần Cuối 2021-09-07
Ngày Phát Hành 2019-03-03
Đánh Giá 4.46/5 Tổng số 57 Đánh Giá
Nhà Phát Triển Samuel Jun
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/samueljun/tomato-clock
URL Trang Trợ Giúp https://github.com/samueljun/tomato-clock/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tomato Clock",
    "version": "6.0.2",
    "author": "Samuel Jun",
    "description": "A simple browser extension for managing your productivity.",
    "applications": {
        "gecko": {
            "id": "jid1-Kt2kYYgi32zPuw@jetpack"
        }
    },
    "icons": {
        "16": "\/assets\/images\/tomato-icon-16.png",
        "32": "\/assets\/images\/tomato-icon-32.png",
        "48": "\/assets\/images\/tomato-icon-48.png",
        "64": "\/assets\/images\/tomato-icon-64.png",
        "128": "\/assets\/images\/tomato-icon-128.png",
        "256": "\/assets\/images\/tomato-icon-256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "\/assets\/images\/tomato-icon-16.png",
            "32": "\/assets\/images\/tomato-icon-32.png",
            "48": "\/assets\/images\/tomato-icon-48.png",
            "64": "\/assets\/images\/tomato-icon-64.png",
            "128": "\/assets\/images\/tomato-icon-128.png",
            "256": "\/assets\/images\/tomato-icon-256.png"
        },
        "default_title": "Tomato Clock",
        "default_popup": "\/panel\/panel.html"
    },
    "background": {
        "scripts": [
            "\/background\/background.js"
        ]
    },
    "permissions": [
        "notifications",
        "storage"
    ],
    "commands": {
        "start-tomato": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Start a new tomato timer."
        },
        "start-short-break": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Start a new short break."
        },
        "start-long-break": {
            "suggested_key": {
                "default": "Alt+Shift+3"
            },
            "description": "Start a new long break."
        },
        "reset-timer": {
            "suggested_key": {
                "default": "Alt+Shift+4"
            },
            "description": "Reset the current timer."
        }
    },
    "options_ui": {
        "page": "\/options\/options.html",
        "browser_style": false
    }
}