Inspect and view changes in Trello Board Printer 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
{
"manifest_version": 2,
"version": "1.0.2",
"name": "Trello Board Printer",
"options_page": "src/options.html",
"permissions": [
"activeTab",
"storage"
],
"short_name": "Trello Board Printer",
"update_url": "https://clients2.google.com/service/update2/crx",
"description": "Print customized cards from your Trello board.",
"web_accessible_resources": [
"src/options.html",
"src/popup.html"
],
"background": {
"scripts": [
"src/js/background.js"
]
},
"browser_action": {
"default_icon": "src/icon.png",
"default_popup": "src/popup.html",
"default_title": "Trello Board Printer"
},
"content_scripts": [
{
"js": [
"lib/jquery.min.js"
],
"matches": [
"https://trello.com/b/*"
],
"run_at": "document_idle"
}
],
"icons": {
"128": "src/icon.png"
}
}