CNET Shopping

CNET Shopping

CNET Shopping helps you find the best prices on your favorite products. Get promo codes and discounts with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "CNET Shopping",
  "short_name": "CNET Shopping",
  "version": "14.7",
  "description": "Get the best price on your favorite products with CNET Shopping. When we find deals, we save you an average of $27 per purchase.",
  "permissions": [
    "http://*/",
    "https://*/",
    "tabs",
    "webNavigation",
    "webRequest",
    "storage",
    "alarms",
    "cookies"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "vendor/jquery.min.js",
        "vendor/purify.min.js",
        "js/app.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*/*.xml"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "html/popup.html",
    "css/popup.css",
    "fonts/*",
    "images/*",
    "html/*",
    "css/*",
    "js/iframe.js",
    "js/webScript.js",
    "js/app.css",
    "vendor/*"
  ],
  "browser_action": {
    "default_icon": "images/cnet-logo-128.png",
    "default_title": "CNET Shopping"
  },
  "icons": {
    "16": "images/cnet-logo-16.png",
    "48": "images/cnet-logo-48.png",
    "128": "images/cnet-logo-128.png"
  },
  "options_ui": {
    "page": "html/options.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "51.0a1"
    }
  }
}