Trello List Filter

Help manage the horizontal sprawl of trello lists on a single board.

Trello List Filter là gì?

Trello List Filter là một tiện ích mở rộng Chrome được phát triển bởi evilbuck, và tính năng chính của nó là "Help manage the horizontal sprawl of trello lists on a single board.".

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

screenshot

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

Tải xuống các tệp mở rộng Trello List Filter 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

                        Solves the problem of horizontal scroll with a lot of lists.
If you find this useful, please consider a donation. I am a freelance developer that spends time on this in my spare time. Any donation will help me find more time to work on trello list filter. https://buymeacoff.ee/evilbuck

  • Do you have a lot of trello lists, but only need to work with a few of them at a time? Does it get tedious to drag cards across the screen and scrolling and scrolling?
  • Or do you want to hide the noise of lists that you're not using?
Trello List Filter is made for this. You simply type part of the name in the list titles you want to see and the lists will filter as you type. 
It even supports a full regex for power users.

You don't need to be a power user to take advantage of the regex. Some common use cases to remember:
  • multiple matches can be separated by the pipe character "|". "recipes|ingredients" will match "recipes" or 
    "ingredients"
  • Negation; don't match lists with characters following the "!" inside the parens -  "^((?!cook).)*$" will match anything that does not contain 
    "cook"
  • Starts with "^". :Begin your filter with the "^" to only match list titles that begin with the characters following the carret 
     - "^engineering:" will match all lists that begin with "engineering:". Useful for prefixing lists for taxonomy.

Features
  • uses regex for filtering list by name
  • It saves the last seven searches for quicker autocomplete

Changelog
1.2.2
 - 2021 trello DOM changes.
1.2.1
  • updated to account for trello's DOM changes
1.1.0
  • google analytics tracking when a filter is applied to help inform future development . (only when, no content is sent about what is filtered)
1.0.1
  • adjusted for changes in Trello html structure
  • more efficient way of checking for Trello header "readiness" for html injection
1.0.0
  • A dropdown list of the last 5 filters used appears when selecting
0.1.1
  • fixed issue where the filter wouldn't work with lists that changed titles since page load
  • changed filter query input font color to match trello lists font color
0.1.0
  • added autocomplete with last seven searches
  • highlights search expression on focus to easily change the expression
  • some updates to modernize 5 year old js code.

request a feature or make a pull request https://github.com/evilbuck/trello-list-filter                    

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

Tên Trello List Filter Trello List Filter
ID lohpplkkfafipfinjgjfnmidmfjobkop
URL Chính Thức https://chromewebstore.google.com/detail/trello-list-filter/lohpplkkfafipfinjgjfnmidmfjobkop
Mô tả Help manage the horizontal sprawl of trello lists on a single board.
Kích Thước Tệp 208 KB
Số Lần Cài Đặt 1,142
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2021-12-02
Ngày Phát Hành 2019-09-13
Đánh Giá 3.38/5 Tổng số 16 Đánh Giá
Nhà Phát Triển evilbuck
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/evilbuck/trello-list-filter
URL Trang Trợ Giúp https://github.com/evilbuck/trello-list-filter/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello List Filter",
    "version": "1.3.0",
    "manifest_version": 3,
    "description": "Help manage the horizontal sprawl of trello lists on a single board.",
    "homepage_url": "http:\/\/github.com\/evilbuck\/trello-list-filter",
    "icons": {
        "16": "icons\/trello-tile-16.png",
        "48": "icons\/trello-tile-48.png",
        "128": "icons\/trello-tile-128.png"
    },
    "default_locale": "en",
    "host_permissions": [
        "http:\/\/trello.com\/*",
        "https:\/\/trello.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "js": [
                "src\/jquery.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}