Inspect and view changes in OGD's enhancements 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",
"name": "OGD's enhancements for Trello",
"version": "7",
"description": "",
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"jquery-1.7.1.min.js",
"mutation_summary.js",
"trelloscrum.js"
],
"css": [
"trelloscrum.css"
]
}
],
"background": {
"scripts": [
"showPageAction.js"
]
},
"permissions": [
"tabs"
],
"page_action": {
"default_icon": {
"19": "images/ogd-trello19.png",
"38": "images/ogd-trello38.png"
},
"default_title": "Board settings",
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"128": "images/ogd-trello128.png"
}
}