Trello List Filter

Filters Trello Lists based on their titles

What is Trello List Filter?

Trello List Filter is a Chrome extension developed by anthonyastige, and its main feature is "Filters Trello Lists based on their titles".

Extension Screenshots

screenshot
screenshot
screenshot

Download Trello List Filter Extension CRX File

Download Trello List Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Filters your Trello Lists by their titles

* Filters instantly as you type
* Automatically saves settings
* Applies across all open Trello Boards

Includes advanced options such as

* Blacklist vs Whitelist
* Matching modes: Contains/Exact Match/Regex
* Case sensitivity (on / off)                    

Extension Basic Information

Name Trello List Filter Trello List Filter
ID nejmlobcaghdppkjgihmmeigobhgecnn
Official URL https://chromewebstore.google.com/detail/trello-list-filter/nejmlobcaghdppkjgihmmeigobhgecnn
Description Filters Trello Lists based on their titles
File Size 6.4 KB
Installation Count 23
Current Version 1.0
Last Updated 2017-05-04
Publish Date 2017-05-04
Rating 4.00/5 Total 1 Ratings
Developer anthonyastige
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello List Filter",
    "description": "Filters Trello Lists based on their titles",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "hider.js"
            ],
            "run_at": "document_end"
        }
    ]
}