Trello Card Numbers
Places card numbers on Trello cards
Trello Card Numbersคืออะไร?
Trello Card Numbers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hal313 และคุณลักษณะหลักของมันคือ "Places card numbers on Trello cards"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Card Numbers
ดาวน์โหลดไฟล์ส่วนขยาย Trello Card Numbers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds card numbers (ID's) to Trello cards. Trello cards have unique ID's associated with them, but they are not displayed. This extension displays the unique ID's of each card in order to visually identify it. This is useful, for example, when a team is discussing a Trello board and prefers to use ID's in place of content for the sake of clarity. Source code available on GitHub: https://github.com/hal313/trello-card-numbers-chrome-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Trello Card Numbers |
ID | ijnbgfbpkcnohomlcomegpocpkneblep |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trello-card-numbers/ijnbgfbpkcnohomlcomegpocpkneblep |
คำอธิบาย | Places card numbers on Trello cards |
ขนาดไฟล์ | 75.84 KB |
จำนวนการติดตั้ง | 609 |
เวอร์ชันปัจจุบัน | 0.0.10 |
อัปเดตครั้งล่าสุด | 2021-04-15 |
วันที่เผยแพร่ | 2018-04-22 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | hal313 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/hal313/trello-card-numbers-chrome-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.10", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "page_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Trello Card Numbers" }, "content_scripts": [ { "matches": [ "http:\/\/*.trello.com\/*", "https:\/\/*.trello.com\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end", "all_frames": false } ] } |