Inspect and view changes in Today's Task - Organize Your Day with a To-Do List Extension 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": "Today's Task - Organize Your Day with a To-Do List Extension",
"version": "1.6.9",
"description": "Turn Your Chrome Home Page Into a Powerful To-Do List Manager",
"action": {
"default_icon": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"icons": {
"128": "images/icon.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"permissions": [
"sidePanel"
],
"side_panel": {
"default_path": "index.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Q"
}
}
}
}