Examine source code of Saleduck - best deals and coupons

Inspect and view changes in Saleduck - best deals and coupons 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
{
  "name": "__MSG_name__",
  "short_name": "__MSG_shortName__",
  "version": "2.0.1.1",
  "description": "__MSG_description__",
  "author": "__MSG_shortName__",
  "default_locale": "en",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "<all_urls>",
    "unlimitedStorage",
    "cookies"
  ],
  "background": {
    "scripts": [
      "vendors/bundle.js",
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "vendors/bundle.js",
        "content/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "locales/default/icon-128.png",
    "default_title": "__MSG_shortName__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "locales/default/icon-32.png",
    "18": "locales/default/icon-32.png",
    "32": "locales/default/icon-32.png",
    "128": "locales/default/icon-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "web_accessible_resources": [
    "content/*.css",
    "content/*.svg",
    "locales/*/*.png"
  ]
}