Inspect and view changes in Kanbanello 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": "__MSG_extName__",
"short_name": "__MSG_extName__",
"version": "0.0.8",
"manifest_version": 2,
"default_locale": "en",
"description": "__MSG_extDescription__",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"96": "images/icon96.png",
"128": "images/icon128.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"js/app.js"
],
"css": [
"css/style.css"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"images/*.png"
],
"permissions": [
"storage",
"https://trello.com/"
]
}