Trello Card Counter
Card counters and card identifiers for easy collaboration and project management
什么是Trello Card Counter?
Trello Card Counter是由Alex Benoit开发的Chrome扩展程序,该扩展的主要功能是“Card counters and card identifiers for easy collaboration and project management”。
扩展截图
下载Trello Card Counter扩展crx文件
下载Trello Card Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
[recently updated, fully working] Trello Card Counter Plus tells you how many cards you have in your lists and board and gives the cards identifiers for easier collaboration and project management. Updated for Trello 2024.
扩展基本信息
名称 | Trello Card Counter |
ID | hepiaakjhimoagmpalbfoojemcnlnagn |
官方URL | https://chromewebstore.google.com/detail/trello-card-counter/hepiaakjhimoagmpalbfoojemcnlnagn |
简介 | Card counters and card identifiers for easy collaboration and project management |
文件大小 | 14.12 KB |
安装次数 | 20,000 |
当前版本 | 3.0.0 |
更新时间 | 2023-12-03 |
上架时间 | 2017-11-22 |
评分 | 3.93/5 共27次评分 |
开发者 | Alex Benoit |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://alexbenoit.me/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello Card Counter", "version": "3.0.0", "description": "Card counters and card identifiers for easy collaboration and project management", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/b\/*" ], "js": [ "trello-override.js" ], "css": [ "trello-override.css" ] } ], "icons": { "128": "trelloext.png" } } |