Inspect and view changes in Calorie Calculator 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",
"name": "Calorie Calculator",
"version": "1.0.0",
"description": "This extension calculates calories when user selects food item(s)",
"manifest_version": 3,
"author": "Sagar Jani",
"action": {
"default_popup": "index.html",
"default_title": "Calorie Calculator"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "dontknow.png",
"32": "dontknow.png",
"48": "dontknow.png",
"128": "dontknow.png"
},
"permissions": [
"scripting",
"activeTab"
]
}