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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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'"
}