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. 擴展基本資訊
| 名稱 | |
| ID | afbaaokfpieehjeffeceajdopnlempob |
| 官方網址 | 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"
} | |