Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
Full screen card view for Trelloคืออะไร?
Full screen card view for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://justin.kelly.org.au และคุณลักษณะหลักของมันคือ "Makes the card and edit window in Trello.com full screen"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Full screen card view for Trello
ดาวน์โหลดไฟล์ส่วนขยาย Full screen card view for Trello ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Converts the small Trello card view/edit windows to be full screen height and width. If you use trello.com alot like myself, and add lots (pages) of information in the card description section you’ll find the small card window a real pain to use. To fix this I whipped up a quick chrome extension to make the card edit window full screen, More info: * http://blog.justin.kelly.org.au/trello-big-edit/ Code on GitHub: * https://github.com/justinkelly/trello_big_edit
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
คำอธิบาย | Makes the card and edit window in Trello.com full screen |
ขนาดไฟล์ | 5.92 KB |
จำนวนการติดตั้ง | 1,820 |
เวอร์ชันปัจจุบัน | 3 |
อัปเดตครั้งล่าสุด | 2013-08-09 |
วันที่เผยแพร่ | 2013-08-08 |
คะแนน | 4.38/5 รวมทั้งหมด 16 คะแนน |
ผู้พัฒนา | https://justin.kelly.org.au |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/justinkelly/trello_big_edit |
URL หน้าช่วยเหลือ | https://github.com/justinkelly/trello_big_edit/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Full screen card view for Trello", "version": "3", "manifest_version": 2, "description": "Makes the card and edit window in Trello.com full screen", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "trello_big_edit.user.js" ] } ] } |