Trello Views
Tailored views of your boards!
Trello Viewsとは何ですか?
Trello ViewsはBiteSite Inc.によって開発されたChromeの拡張機能で、その主な機能は「Tailored views of your boards!」です。
拡張機能のスクリーンショット
Trello Views拡張機能のCRXファイルをダウンロード
Trello Views拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Trello Views is a simple extension that allows to to easily show/hide columns on Trello boards. It's ideal for boards that have large number of columns catering to many different roles. For example, you might have a board that Product Managers, Developers, and Designers use. Yet each role only cares about certain columns. You could easily create a "PM" view, a "Dev" view, and a "Design" view each with their own set of columns. Instructions: 1. Click on the Extension in your Browser 2. Click "Configure Views" 3. Add views by specifying their name, and then a comma-separated list of column names that you want active for that view. 4. Click "Save". 5. Now launch a Trello board, and then click on the Extension and select your view. Send your feedback to [email protected]!
拡張機能の基本情報
名前 | Trello Views |
ID | ljfoaeaaojcefkmljglbbphcoclnodnm |
公式URL | https://chromewebstore.google.com/detail/trello-views/ljfoaeaaojcefkmljglbbphcoclnodnm |
説明 | Tailored views of your boards! |
ファイルサイズ | 9.48 KB |
インストール数 | 60 |
現在のバージョン | 0.0.1 |
最終更新日 | 2021-06-12 |
公開日 | 2021-06-12 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | BiteSite Inc. |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Views", "description": "Tailored views of your boards!", "version": "0.0.1", "manifest_version": 3, "options_page": "options.html", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "contentScript.js" ] } ], "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } } |