Inspect and view changes in Trello Card Counter source codes across current and past versions
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",
"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"
}
}