Trello List Wizard

This extension adds more functionality to your Trello boards

Trello List Wizardคืออะไร?

Trello List Wizard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย webXID.net และคุณลักษณะหลักของมันคือ "This extension adds more functionality to your Trello boards"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello List Wizard

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
อีเมล [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'"
}