Real-time display of total cards in every list to Boost your Trello productivity!
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",
"name": "Trello Real-Time Card Counter",
"description": "Real-time display of total cards in every list to Boost your Trello productivity!",
"version": "1.2",
"author": "Suraj Lulla",
"manifest_version": 2,
"content_scripts": [
{
"css": [
"trellocounter.css"
],
"js": [
"jquery.min.js",
"trellocounter.js"
],
"matches": [
"https://trello.com/*"
]
}
],
"icons": {
"16": "trello-card-counter-16.png",
"48": "trello-card-counter-48.png",
"128": "trello-card-counter-128.png"
}
}