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 |
官方網址 | 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. |
電子郵箱 | [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" } } |