Inspect and view changes in Trello To-do Notes 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 To-do Notes",
"description": "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30",
"version": "0.9.8",
"permissions": [
"http://trello.com/*",
"https://trello.com/*"
],
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Click to do the magic"
},
"icons": {
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"jquery.js",
"bowser.min.js",
"script.js",
"majic.js"
]
}
],
"web_accessible_resources": [
"color.css"
]
}