Pomodoro clock

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

ما هو Pomodoro clock؟

Pomodoro clock هو إضافة Chrome تم تطويرها بواسطة syvo، والميزة الرئيسية لها هي "A simple pomodoro clock in your browser to hack your productivity.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Pomodoro clock

قم بتنزيل ملفات الامتداد Pomodoro clock بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/macmorning/pomodoro-webext
عنوان صفحة المساعدة https://github.com/macmorning/pomodoro-webext
عنوان صفحة سياسة الخصوصية 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"
    ]
}