Examine source code of Checkout Candy

Inspect and view changes in Checkout Candy 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": "__MSG_appName__",
  "version": "1.0.4",
  "manifest_version": 2,
  "description": "__MSG_appDesc__",
  "homepage_url": "https://www.checkoutcandy.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_popup": "assets/html/popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "assets/js/utils.js",
      "assets/js/config.js",
      "assets/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "assets/js/serp.js"
      ],
      "css": [
        "assets/css/serp.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/js/popper.js",
        "lib/js/tippy.umd.js",
        "assets/js/utils.js",
        "assets/js/config.js",
        "assets/js/deals.js"
      ],
      "css": [
        "assets/css/deals.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "/icons/*",
    "/assets/*"
  ]
}