Trello List Wizard
This extension adds more functionality to your Trello boards
Trello List Wizardとは何ですか?
Trello List WizardはwebXID.netによって開発されたChromeの拡張機能で、その主な機能は「This extension adds more functionality to your Trello boards」です。
拡張機能のスクリーンショット
Trello List Wizard拡張機能のCRXファイルをダウンロード
Trello List Wizard拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Add more functionality to Trello boards
==================================
# Change your cards view:
- Width
- Title font size
- Show/hide:
+ card numbers
+ card title tags style (+ AutoReplace)
+ card preview images
+ special style for "Done" list
# Add more Titles tags type:
- Time
+ Estimate time
+ Spent time
+ Total time
* for each card list
* for each card checklist
- Priority
- Project
- Buget
+ Total Budget
* for each card list 拡張機能の基本情報
| 名前 | |
| ID | mkbinjaoeonjpjojkkabokgmiljodmip |
| 公式URL | https://chromewebstore.google.com/detail/trello-list-wizard/mkbinjaoeonjpjojkkabokgmiljodmip |
| 説明 | This extension adds more functionality to your Trello boards |
| ファイルサイズ | 94.84 KB |
| インストール数 | 386 |
| 現在のバージョン | 1.1.2 |
| 最終更新日 | 2018-01-15 |
| 公開日 | 2018-01-14 |
| 評価 | 4.38/5 合計 13 レビュー |
| 開発者 | webXID.net |
| Eメール | [email protected] |
| 支払い方法 | in_app |
| 拡張機能のウェブサイト | https://webxid.net |
| 対応言語 | en |
| manifest.json | |
{
"name": "Trello List Wizard",
"short_name": "Trello List Wizard",
"description": "This extension adds more functionality to your Trello boards",
"author": "Pavlo Matsura",
"content_scripts": [
{
"css": [
"trello-wizard.css"
],
"js": [
"jquery.js",
"trello-wizard-fn.js",
"trello-wizard-class.js",
"trello-wizard-requests.js",
"trello-wizard.js",
"notifications.js"
],
"matches": [
"https:\/\/trello.com\/*",
"https:\/\/webxid.net\/*"
]
}
],
"manifest_version": 2,
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.1.2",
"browser_action": {
"default_icon": {
"16": "icon-49.png",
"38": "icon-49.png",
"128": "icon-128.png"
},
"default_title": "Trello List Wizard",
"default_popup": "trello-wizard.html"
},
"web_accessible_resources": [
"icon-128.png",
"beta-theme.css",
"trello-theme.css"
],
"permissions": [
"tabs",
"activeTab",
"https:\/\/webxid.net\/*",
"https:\/\/api.webxid.net\/*"
],
"icons": {
"16": "icon-49.png",
"128": "icon-128.png"
},
"content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'"
} | |