Shrink Lists for Trello
Use with Trello to hide empty lists and resize the width of visible lists.
什么是Shrink Lists for Trello?
Shrink Lists for Trello是由labbeen开发的Chrome扩展程序,该扩展的主要功能是“Use with Trello to hide empty lists and resize the width of visible lists.”。
扩展截图
下载Shrink Lists for Trello扩展crx文件
下载Shrink Lists for Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
**If you need to add a list, you can double click anywhere on a board.** This extension will add four buttons to all your boards. "Hide Empty Lists" will hide all empty lists from the board. When empty lists are hidden, "Show Empty Lists" will appear. "Show Empty Lists" will show all previously hidden lists. "Shrink Lists" will reduce the width of lists on the board automatically based on available screen space. When lists have been shrunk, the button changes to "Expand Lists". "Expand Lists" will revert lists to their original size. This extension will also remove the "Add a list..." button from your boards. If you need to add a list, you can double click anywhere on a board.
扩展基本信息
名称 | Shrink Lists for Trello |
ID | kilgjjpphamfafmpfbljhhnibfalgica |
官方URL | https://chromewebstore.google.com/detail/shrink-lists-for-trello/kilgjjpphamfafmpfbljhhnibfalgica |
简介 | Use with Trello to hide empty lists and resize the width of visible lists. |
文件大小 | 122 KB |
安装次数 | 520 |
当前版本 | 2.0 |
更新时间 | 2023-10-25 |
上架时间 | 2017-03-21 |
评分 | 3.90/5 共10次评分 |
开发者 | labbeen |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shrink Lists for Trello", "short_name": "Shrink Trello", "version": "2.0", "manifest_version": 3, "description": "Use with Trello to hide empty lists and resize the width of visible lists.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "js\/jquery\/jquery.min.js", "src\/main.js", "src\/events.js" ], "run_at": "document_end" } ] } |