Trello custom progress bar
Customize you Trello progress bar
Trello custom progress barとは何ですか?
Trello custom progress barはtopazteeによって開発されたChromeの拡張機能で、その主な機能は「Customize you Trello progress bar」です。
拡張機能のスクリーンショット
Trello custom progress bar拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } |