An extension that counts points on trello cards.
We use it at OGD to make trello work just a bit better as a Scrum board.
- shows…
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": "OGD's enhancements for Trello",
"version": "7.0.2",
"description": "",
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"jquery-1.7.1.min.js",
"mutation_summary.js",
"trelloscrum.js"
],
"css": [
"trelloscrum.css"
]
}
],
"background": {
"scripts": [
"showPageAction.js"
]
},
"permissions": [
"tabs"
],
"page_action": {
"default_icon": {
"19": "images/ogd-trello19.png",
"38": "images/ogd-trello38.png"
},
"default_title": "Board settings",
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"128": "images/ogd-trello128.png"
}
}