Trello My Cards Prioritization

My Cards prioritization.

ما هو Trello My Cards Prioritization؟

Trello My Cards Prioritization هو إضافة Chrome تم تطويرها بواسطة https://www.netmagnet.cz، والميزة الرئيسية لها هي "My Cards prioritization.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Trello My Cards Prioritization

قم بتنزيل ملفات الامتداد Trello My Cards Prioritization بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Visual prioritization of My Cards page list in Trello. NOT in a standard board view. Extension changes card's visual appearance based on its presence in a list:

Ideas: light transparency
Todo: without change
Doing: highlighted
To Deploy: highlighted
Done: hidden
Postponed: heavy transparency
Cancelled: hidden

These list names can be substrings, so cards in list "Done 2019-09-19" will be hidden.

Updates in v1.0.0:
- correctly detect page and content change so this extension works again :)

Updates in v1.1.1:
- Add "To Deploy" list name
- Fix css class names                    

معلومات أساسية عن التمديد

الاسم Trello My Cards Prioritization Trello My Cards Prioritization
ID bpbkpegngbkknmghhjbeekjdphjhkdif
عنوان URL الرسمي https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif
الوصف My Cards prioritization.
حجم الملف 53.05 KB
عدد التثبيتات 19
النسخة الحالية 1.1.1
آخر تحديث 2019-12-11
تاريخ النشر 2019-12-11
المطور https://www.netmagnet.cz
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://www.netmagnet.cz
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello My Cards Prioritization",
    "short_name": "Trello My Cards Prio",
    "description": "My Cards prioritization.",
    "version": "1.1.1",
    "author": "Tomas Kouba",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/trello.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "bootstrap.js",
                "mycards.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "style.css"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}