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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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