Examine source code of Calorie Counter | Food Tracker

Inspect and view changes in Calorie Counter | Food Tracker 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": "Calorie Counter | Food Tracker",
  "description": "Effortlessly calculate calories from a photo — no scales or boring measurements needed!",
  "version": "1.0.1",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Calorie Counter | Food Tracker",
    "default_popup": "src/popup/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "offscreen"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/assets/*",
        "assets/*"
      ],
      "use_dynamic_url": false
    }
  ]
}