Trello Auto Scroll
This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Trello Auto Scrollคืออะไร?
Trello Auto Scroll เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dashboard-team และคุณลักษณะหลักของมันคือ "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Auto Scroll
ดาวน์โหลดไฟล์ส่วนขยาย Trello Auto Scroll ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allow your Trello scroll automatically until the last card and back to the first card as a loop. It's extremely useful for using Trello as a slide show board. Developed by: Willian Keller Diego Ocko Martins
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | iheeklbhnidcdjfkonakkkbbjophomkk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk |
คำอธิบาย | This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen. |
ขนาดไฟล์ | 78.89 KB |
จำนวนการติดตั้ง | 126 |
เวอร์ชันปัจจุบัน | 1.7 |
อัปเดตครั้งล่าสุด | 2017-11-06 |
วันที่เผยแพร่ | 2017-11-06 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | dashboard-team |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.7", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "src\/utils\/storage.min.js", "src\/utils\/runtime.min.js", "src\/vendor\/jquery.min.js", "src\/main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "src\/options.html", "chrome_style": false }, "icons": { "128": "src\/icons\/icon.png" }, "browser_action": { "default_icon": "src\/icons\/icon.png", "default_popup": "src\/popup.html", "default_title": "Trello Auto Scroll" }, "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |