Trello custom progress bar
Customize you Trello progress bar
What is Trello custom progress bar?
Trello custom progress bar is a Chrome extension developed by topaztee, and its main feature is "Customize you Trello progress bar".
Extension Screenshots
Download Trello custom progress bar Extension CRX File
Download Trello custom progress bar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Change the boring blue progress bar to something else. To change the progress bar, right click the extension icon, and choose options.
Extension Basic Information
Name | Trello custom progress bar |
ID | afbaaokfpieehjeffeceajdopnlempob |
Official URL | https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob |
Description | Customize you Trello progress bar |
File Size | 50.44 KB |
Installation Count | 46 |
Current Version | 1.2 |
Last Updated | 2019-04-29 |
Publish Date | 2019-04-29 |
Rating | 2.33/5 Total 3 Ratings |
Developer | topaztee |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } |