Pomodoro - MUST
Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.
ما هو Pomodoro - MUST؟
Pomodoro - MUST هو إضافة Chrome تم تطويرها بواسطة Arminas، والميزة الرئيسية لها هي "Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Pomodoro - MUST
قم بتنزيل ملفات الامتداد Pomodoro - MUST بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | |
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 |
عنوان صفحة المساعدة | 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" ] } ] } |