Inspect and view changes in Trello-Office 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": "Trello-Office",
"description": "project management and time tracking based on trello",
"version": "1.3",
"manifest_version": 2,
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"scripts": [
"app.js"
]
},
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"jquery-2.0.3.js",
"trello-script.js"
]
}
],
"icons": {
"128": "icon_128.png"
}
}