Inspect and view changes in TredoList 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": 3,
"name": "TredoList",
"applications": {
"gecko": {
"id": "tredolist-firefox@netismic.com"
}
},
"description": "Turn Trello into a convenient todolist tool, with new list layouts and dynamic color themes",
"version": "1.0.0.1",
"author": "Olivier Cado",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"permissions": [
"scripting",
"declarativeContent",
"storage"
],
"host_permissions": [
"*://trello.com/b/*"
],
"web_accessible_resources": [
{
"resources": [
"css/layout.css",
"css/theme-.css",
"css/theme-bright.css",
"css/theme-pastel.css",
"css/theme-dark.css"
],
"matches": [
"*://trello.com/*"
]
}
],
"action": {
"default_title": "Tredolist",
"default_popup": "config.html",
"default_icon": {
"19": "icon48.png",
"38": "icon48.png",
"48": "icon48.png"
}
}
}