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”。

擴展截圖

screenshot
screenshot

下載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                    

擴展基本資訊

名稱 Trello List Wizard Trello List Wizard
ID mkbinjaoeonjpjojkkabokgmiljodmip
官方網址 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
電子郵箱 [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'"
}