Trello To-do Notes
Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30
ما هو Trello To-do Notes؟
Trello To-do Notes هو إضافة Chrome تم تطويرها بواسطة https://valerypopoff.ru/trello، والميزة الرئيسية لها هي "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Trello To-do Notes
قم بتنزيل ملفات الامتداد Trello To-do Notes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
How to use: open Trello cards in separate browser windows and click the extension icon
* Removes visual noise leaving only checklists.
* Highlights urgent tasks if you provide deadlines like this: / Apr 30 معلومات أساسية عن التمديد
| الاسم | |
| ID | agdeebidnlidokgnnkhiiccefldilcjp |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
| الوصف | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
| حجم الملف | 109 KB |
| عدد التثبيتات | 1,099 |
| النسخة الحالية | 0.9.8 |
| آخر تحديث | 2020-12-12 |
| تاريخ النشر | 2018-07-02 |
| تقييم | 4.36/5 مجموع تقييمات 11 |
| المطور | https://valerypopoff.ru/trello |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | http://valerypopoff.ru/trello |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello To-do Notes",
"description": "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: \/ Apr 30",
"version": "0.9.8",
"permissions": [
"http:\/\/trello.com\/*",
"https:\/\/trello.com\/*"
],
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Click to do the magic"
},
"icons": {
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/trello.com\/*"
],
"js": [
"jquery.js",
"bowser.min.js",
"script.js",
"majic.js"
]
}
],
"web_accessible_resources": [
"color.css"
]
} | |