Trello custom progress bar
Customize you Trello progress bar
Trello custom progress bar là gì?
Trello custom progress bar là một tiện ích mở rộng Chrome được phát triển bởi topaztee, và tính năng chính của nó là "Customize you Trello progress bar".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Trello custom progress bar
Tải xuống các tệp mở rộng Trello custom progress bar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Change the boring blue progress bar to something else. To change the progress bar, right click the extension icon, and choose options.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Trello custom progress bar |
ID | afbaaokfpieehjeffeceajdopnlempob |
URL Chính Thức | https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob |
Mô tả | Customize you Trello progress bar |
Kích Thước Tệp | 50.44 KB |
Số Lần Cài Đặt | 46 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2019-04-29 |
Ngày Phát Hành | 2019-04-29 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | topaztee |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |