Inspect and view changes in ScrummerTheodo 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
{
"name": "ScrummerTheodo",
"version": "3.2.2",
"description": "Adds story points, post-estimation points and card ID to Trello",
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://trello.com/*"
],
"js": [
"scrummer.js"
],
"css": [
"scrummer.css"
]
}
],
"permissions": [
"storage"
],
"manifest_version": 3,
"action": {
"default_icon": {
"48": "img/icon48.png",
"128": "img/icon128.png",
"1024": "img/icon1024.png"
},
"default_title": "ScrummerTheodo",
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "scrummertheodo@theodo.fr",
"strict_min_version": "48.0"
}
}
}