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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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"
]
} | |