Inspect and view changes in Trello Story Point Counts 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 Story Point Counts",
"short_name": "Trello Story Points",
"description": "Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.",
"version": "1.0.0.8",
"browser_action": {
"default_icon": {
"19": "img/GreyT19.png"
}
},
"permissions": [
"*://*.trello.com/*"
],
"icons": {
"16": "img/GreyT16.png",
"128": "img/GreyT.png"
},
"content_scripts": [
{
"matches": [
"*://*.trello.com/*"
],
"css": [
"liststyles.css"
],
"js": [
"jquery-1.11.1.min.js",
"jquery.waituntilexists.min.js",
"mutation-summary.js",
"listcount.js"
],
"run at": [
"document_end"
]
}
]
}