Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…
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": "TrelloListPrint",
"short_name": "TrelloListPrint",
"permissions": [
"*://trello.com/*",
"activeTab",
"tabs",
"webNavigation"
],
"content_scripts": [
{
"matches": [
"*://trello.com/*"
],
"js": [
"script.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "TrelloListPrint128v001.png"
},
"version": "0.0.7",
"manifest_version": 2
}