Trello Card Numbers Plus [2023 Update]
Adds card numbers on Trello and more! Updated October 2023
什么是Trello Card Numbers Plus [2023 Update]?
Trello Card Numbers Plus [2023 Update]是由https://leonardomontini.dev开发的Chrome扩展程序,该扩展的主要功能是“Adds card numbers on Trello and more! Updated October 2023”。
扩展截图
下载Trello Card Numbers Plus [2023 Update]扩展crx文件
下载Trello Card Numbers Plus [2023 Update]扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
WORKING AFTER OCTOBER 2023 TRELLO UPDATE --- A fully customizable Chrome extension show unique card numbers/ID and counting cards in each list. With card IDs it's much easier to refer to a specific card with your team and in commit messages. This extension provides full customization of the card numbers, have a look! Features: - Show card ID - Customize card ID format - Toggle card ID display - Count cards for each list - Configs live reload - Customize colors - Exclude some boards - Toggle cards count display Planned features ...feel free to suggest a feature by opening an issue on GitHub!
扩展基本信息
名称 | Trello Card Numbers Plus [2023 Update] |
ID | ncibjlmfhjcjnphnpphgphbflpdpliei |
官方URL | https://chromewebstore.google.com/detail/trello-card-numbers-plus/ncibjlmfhjcjnphnpphgphbflpdpliei |
简介 | Adds card numbers on Trello and more! Updated October 2023 |
文件大小 | 42.46 KB |
安装次数 | 2,220 |
当前版本 | 1.3.3 |
更新时间 | 2023-11-21 |
上架时间 | 2022-06-17 |
评分 | 5.00/5 共5次评分 |
开发者 | https://leonardomontini.dev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Balastrong/trello-card-numbers-plus |
帮助页面URL | https://github.com/Balastrong/trello-card-numbers-plus/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello Card Numbers Plus [2023 Update]", "version": "1.3.3", "description": "Adds card numbers on Trello and more! Updated October 2023", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_title": "Trello Card Numbers Plus", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "trelloCardNumberPlus.js" ], "css": [ "trelloCardNumberPlus.css" ] } ] } |