Board Summary for Trello
The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.
什么是Board Summary for Trello?
Board Summary for Trello是由BoardSummary开发的Chrome扩展程序,该扩展的主要功能是“The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.”。
扩展截图
下载Board Summary for Trello扩展crx文件
下载Board Summary for Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Board Summary for Trello extension retrieves and displays summary data for Trello boards. The board summary can include the number of active lists/cards in the board and a summary of due dates for cards in the board (past due/due now/due today/due soon). On board pages, the board summary data allows for creating nested boards, i.e. cards that reference other boards. Simply create a card whose description is the URL of another board, or use the add Nested Board button on the card edit page to pick an existing board or create a new board, and this card will be treated as an nested board. This method allows these cards to be usable in other browsers and mobile apps without this extension.
扩展基本信息
名称 | Board Summary for Trello |
ID | aelhmieiiecnjpaklhmbbefkgdpelobf |
官方URL | https://chromewebstore.google.com/detail/board-summary-for-trello/aelhmieiiecnjpaklhmbbefkgdpelobf |
简介 | The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards. |
文件大小 | 71.67 KB |
安装次数 | 2,427 |
当前版本 | 1.9.6 |
更新时间 | 2021-03-21 |
上架时间 | 2020-06-11 |
评分 | 4.75/5 共20次评分 |
开发者 | BoardSummary |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://boardsummary.gitlab.io/ |
帮助页面URL | https://boardsummary.gitlab.io/BoardSummaryForTrelloChromeExtension/#support |
隐私政策页面URL | https://boardsummary.gitlab.io/BoardSummaryForTrelloChromeExtension/docs |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Board Summary for Trello", "description": "The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.", "version": "1.9.6", "icons": { "128": "images\/icon-128.png", "48": "images\/icon-48.png", "32": "images\/icon-32.png", "19": "images\/icon-19.png", "16": "images\/icon-16.png" }, "options_ui": { "page": "options.html", "chrome_style": false }, "options_page": "options.html", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "css": [ "styles\/boardSummary.css" ], "js": [ "scripts\/handlebars\/handlebars.runtime.min.js", "scripts\/templates.min.js", "scripts\/jquery\/jquery.min.js", "scripts\/boardSummary.js" ] } ], "web_accessible_resources": [ "images\/*.png" ], "page_action": { "default_icon": { "128": "images\/icon-128.png", "48": "images\/icon-48.png", "32": "images\/icon-32.png", "19": "images\/icon-19.png", "16": "images\/icon-16.png" } }, "permissions": [ "tabs", "storage", "webNavigation", "https:\/\/trello.com\/" ] } |