Inspect and view changes in Background Colors Cards for Trello 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": "Background Colors Cards for Trello",
"short_name": "Back Trello",
"description": "",
"version": "0.2",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "iconBackground16.png",
"48": "iconBackground48.png",
"128": "iconBackground128.png"
},
"page_action": {
"default_icon": "iconBackground16.png",
"default_title": "Click to Apply Background Colors Cards.\nClick Again to Clean Background Colors Cards."
},
"content_scripts": [
{
"matches": [
"http://trello.com/*",
"https://trello.com/*"
],
"js": [
"jquery.1.11.0.min.js",
"content.js"
],
"run_at": "document_end"
}
],
"permissions": [
"http://trello.com/*",
"https://trello.com/*",
"declarativeContent"
]
}