Trello Card Printer
This extension populates print-ready cards for use with Agile sprint boards.
Trello Card Printerคืออะไร?
Trello Card Printer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thesheps และคุณลักษณะหลักของมันคือ "This extension populates print-ready cards for use with Agile sprint boards."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Card Printer
ดาวน์โหลดไฟล์ส่วนขยาย Trello Card Printer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This simple chrome extension generates print-ready cards for your sprint backlog. It integrates seamlessly into your Trello board, and allows for the selection of different colours and categories for your tickets. Recent Changes: - Adds some other fields woo! - Adds fix to pull changes from local storage
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Trello Card Printer |
ID | dakpbdiplbbpkiejkbdebphiajboajic |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic |
คำอธิบาย | This extension populates print-ready cards for use with Agile sprint boards. |
ขนาดไฟล์ | 251 KB |
จำนวนการติดตั้ง | 852 |
เวอร์ชันปัจจุบัน | 2.4 |
อัปเดตครั้งล่าสุด | 2019-06-08 |
วันที่เผยแพร่ | 2019-06-08 |
คะแนน | 3.75/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | thesheps |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Card Printer", "description": "This extension populates print-ready cards for use with Agile sprint boards.", "version": "2.4", "short_name": "Trello Card Printer", "browser_action": { "default_icon": "src\/img\/icon.png", "default_popup": "src\/popup.html", "default_title": "Print Trello Cards" }, "icons": { "128": "src\/img\/extension-icon.png" }, "permissions": [ "activeTab" ], "web_accessible_resources": [ "src\/settings.html", "src\/popup.html" ], "options_page": "src\/settings.html", "content_scripts": [ { "js": [ "lib\/jquery.min.js" ], "matches": [ "https:\/\/trello.com\/b\/*" ], "run_at": "document_idle" } ], "background": { "scripts": [ "src\/scripts\/background.js" ] } } |