Trello My Cards Prioritization

My Cards prioritization.

Trello My Cards Prioritization là gì?

Trello My Cards Prioritization là một tiện ích mở rộng Chrome được phát triển bởi https://www.netmagnet.cz, và tính năng chính của nó là "My Cards prioritization.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello My Cards Prioritization

Tải xuống các tệp mở rộng Trello My Cards Prioritization dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello My Cards Prioritization Trello My Cards Prioritization
ID bpbkpegngbkknmghhjbeekjdphjhkdif
URL Chính Thức https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif
Mô tả My Cards prioritization.
Kích Thước Tệp 53.05 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2019-12-11
Ngày Phát Hành 2019-12-11
Nhà Phát Triển https://www.netmagnet.cz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.netmagnet.cz
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}