Examine source code of Price Tracker

Inspect and view changes in Price 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": "Price Tracker",
  "version": "2.0.1",
  "description": "Track prices across websites with real-time monitoring, historical charts, customizable alerts, and more",
  "author": "Price Tracker Team",
  "homepage_url": "https://pricetrackerextension.com",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "alarms",
    "webRequest",
    "webNavigation",
    "browsingData",
    "notifications",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://pricetrackerextension.com/*",
    "https://www.paypal.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Price Tracker"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "offscreen.html",
        "offscreen.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "https://pricetrackerextension.com/*"
    ]
  },
  "minimum_chrome_version": "88"
}