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」です。
拡張機能のスクリーンショット
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) 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
]
} | |