Background Colors Cards for Trello
When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…
Background Colors Cards for Trelloคืออะไร?
Background Colors Cards for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nikey.es และคุณลักษณะหลักของมันคือ "When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Background Colors Cards for Trello
ดาวน์โหลดไฟล์ส่วนขยาย Background Colors Cards for Trello ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards. The extension get the color from the card label.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Background Colors Cards for Trello |
ID | gbpnfdnpkiogmaicmknplgedbcjndaaf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/background-colors-cards-f/gbpnfdnpkiogmaicmknplgedbcjndaaf |
คำอธิบาย | When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.… |
ขนาดไฟล์ | 50.04 KB |
จำนวนการติดตั้ง | 1,297 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2014-03-21 |
วันที่เผยแพร่ | 2014-03-21 |
คะแนน | 3.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | nikey.es |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Background Colors Cards for Trello", "short_name": "Back Trello", "description": "", "version": "0.2", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "iconBackground16.png", "48": "iconBackground48.png", "128": "iconBackground128.png" }, "page_action": { "default_icon": "iconBackground16.png", "default_title": "Click to Apply Background Colors Cards.\nClick Again to Clean Background Colors Cards." }, "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "jquery.1.11.0.min.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*", "declarativeContent" ] } |