Trello custom progress bar
Customize you Trello progress bar
Trello custom progress barคืออะไร?
Trello custom progress bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย topaztee และคุณลักษณะหลักของมันคือ "Customize you Trello progress bar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello custom progress bar
ดาวน์โหลดไฟล์ส่วนขยาย Trello custom progress bar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Change the boring blue progress bar to something else. To change the progress bar, right click the extension icon, and choose options.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Trello custom progress bar |
ID | afbaaokfpieehjeffeceajdopnlempob |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob |
คำอธิบาย | Customize you Trello progress bar |
ขนาดไฟล์ | 50.44 KB |
จำนวนการติดตั้ง | 46 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2019-04-29 |
วันที่เผยแพร่ | 2019-04-29 |
คะแนน | 2.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | topaztee |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello custom progress bar", "short_name": "Trello custom progress bar", "description": "Customize you Trello progress bar", "version": "1.2", "permissions": [ "tabs", "storage", "webNavigation" ], "browser_action": { "default_title": "blahblah", "default_icon": { "32": "32.png" } }, "background": { "matches": [ "*:\/\/trello.com\/c\/*" ], "scripts": [ "background.js" ], "persistent": false }, "icons": { "32": "32.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "*.png" ], "options_page": "options.html" } |