Trello List Filter

Filters Trello Lists based on their titles

什么是Trello List Filter?

Trello List Filter是由anthonyastige开发的Chrome扩展程序,该扩展的主要功能是“Filters Trello Lists based on their titles”。

扩展截图

screenshot
screenshot
screenshot

下载Trello List Filter扩展crx文件

下载Trello List Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)                    

扩展基本信息

名称 Trello List Filter Trello List Filter
ID nejmlobcaghdppkjgihmmeigobhgecnn
官方URL https://chromewebstore.google.com/detail/trello-list-filter/nejmlobcaghdppkjgihmmeigobhgecnn
简介 Filters Trello Lists based on their titles
文件大小 6.4 KB
安装次数 23
当前版本 1.0
更新时间 2017-05-04
上架时间 2017-05-04
评分 4.00/5 共1次评分
开发者 anthonyastige
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    ]
}