[DEPRECATED] List Layouts for Trello
Allow Trello lists to be displayed vertically or in a grid.
什么是[DEPRECATED] List Layouts for Trello?
[DEPRECATED] List Layouts for Trello是由Natalie Chouinard开发的Chrome扩展程序,该扩展的主要功能是“Allow Trello lists to be displayed vertically or in a grid.”。
扩展截图
下载[DEPRECATED] List Layouts for Trello扩展crx文件
下载[DEPRECATED] List Layouts for Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
***DEPRECATED*** This Chrome extension is now deprecated. Please consider these alternatives: Grid Layout for Trello: https://userstyles.org/styles/271254/grid-layout-for-trello Vertical Layout for Trello: https://userstyles.org/styles/271256/vertical-layout-for-trello ***DEPRECATED*** The List Layouts for Trello extension adds a button to your Chrome toolbar allowing you to toggle the Trello board layout from horizontal to grid to vertical by clicking the icon.
扩展基本信息
名称 | [DEPRECATED] List Layouts for Trello |
ID | aldklnbenbdgfgfbflalmlddkkndgnlc |
官方URL | https://chromewebstore.google.com/detail/deprecated-list-layouts-f/aldklnbenbdgfgfbflalmlddkkndgnlc |
简介 | Allow Trello lists to be displayed vertically or in a grid. |
文件大小 | 10.65 KB |
安装次数 | 51,027 |
当前版本 | 4.0 |
更新时间 | 2023-10-31 |
上架时间 | 2019-07-27 |
评分 | 4.63/5 共192次评分 |
开发者 | Natalie Chouinard |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sudonatalie/layout-trello |
帮助页面URL | https://github.com/sudonatalie/layout-trello/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "[DEPRECATED] List Layouts for Trello", "description": "Allow Trello lists to be displayed vertically or in a grid.", "version": "4.0", "author": "Natalie Chouinard", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/b\/*" ], "css": [ "css\/layout.css" ], "js": [ "js\/init.js" ] } ], "permissions": [ "*:\/\/trello.com\/b\/*", "declarativeContent", "storage", "webNavigation" ], "page_action": { "default_title": "List Layouts for Trello" }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" } } } } |