Inspect and view changes in ToDo 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": "ToDo",
"description": "This todo extention uses local storage to store your data.",
"version": "1.2.1",
"icons": {
"16": "img/logo(48×48px).png",
"48": "img/logo(48×48px).png",
"128": "img/logo(128×128px).png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"style/page.css"
]
}
],
"action": {
"default_icon": {
"16": "img/logo(48×48px).png",
"48": "img/logo(48×48px).png",
"128": "img/logo(128×128px).png"
},
"default_popup": "popup.html",
"default_title": "ToDO List"
}
}