Trello No Strikethrough
Removes the strikethrough for completed tasks on Trello
Trello No Strikethroughคืออะไร?
Trello No Strikethrough เป็นส่วนขยายของ Chrome ที่พัฒนาโดย paradite และคุณลักษณะหลักของมันคือ "Removes the strikethrough for completed tasks on Trello"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello No Strikethrough
ดาวน์โหลดไฟล์ส่วนขยาย Trello No Strikethrough ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Trello strikethrough for completed tasks by default can be annoying. This extensions removes Trello strikethrough for completed tasks in checklists. Source code: https://github.com/paradite/trello-no-strikethrough
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Trello No Strikethrough |
ID | jalipphihlpncggkbgmhdanibebphhkb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb |
คำอธิบาย | Removes the strikethrough for completed tasks on Trello |
ขนาดไฟล์ | 7.12 KB |
จำนวนการติดตั้ง | 258 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2022-10-16 |
วันที่เผยแพร่ | 2017-04-30 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | paradite |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/paradite/trello-no-strikethrough |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello No Strikethrough", "description": "Removes the strikethrough for completed tasks on Trello", "icons": { "128": "icon.png" }, "version": "1.0.2", "background": { "page": "popup.html" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Trello No Strikethrough" }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/*" ], "css": [ "mystyles.css" ] } ], "permissions": [ "https:\/\/trello.com\/*" ] } |