Inspect and view changes in Trello Business Style 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": 2,
"name": "Trello Business Style",
"short_name": "trello-Business-Style",
"description": "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards",
"version": "1.2.1",
"icons": {
"16": "images/icon-16.png",
"64": "images/icon-48.png",
"128": "images/icon-128.png"
},
"permissions": [
"storage",
"https://trello.com/*"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://trello.com/*"
],
"js": [
"content-scripts.js"
],
"css": [
"content-styles.css"
]
}
]
}