Shows the number of cards in every list in Trello. Adds support for Kanban limits.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"content_scripts": [
{
"css": [
"cardcounter.css"
],
"js": [
"jquery-1.7.1.min.js",
"cardcounter.umd.js"
],
"matches": [
"https://trello.com/*"
]
}
],
"icons": {
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"description": "Shows the number of cards in every list in Trello. Adds support for Kanban limits.",
"name": "Original Card Counter for Trello",
"version": "2.0.0",
"manifest_version": 3
}