WhiteCashBack

WhiteCashBack

The WhiteCashBack chrome extension makes earning CashBack and finding coupons convenient.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WhiteCashBack",
  "version": "1.42",
  "manifest_version": 2,
  "short_name": "WhiteCahsBack",
  "description": "The WhiteCashBack chrome extension makes earning CashBack and finding coupons convenient.",
  "homepage_url": "https://www.whitecashback.in/",
  "author": "WhiteCashBack",
  "incognito": "split",
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_title": "WhiteCashBack"
  },
  "background": {
    "scripts": [
      "js/jquery-2.1.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "http://*.bing.com/*",
        "http://*.yahoo.com/*",
        "https://*.yahoo.com/*",
        "https://*.google.com/*",
        "https://*.google.co.in/*"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/template.js",
        "js/common.js"
      ]
    },
    {
      "matches": [
        "https://*.google.com/*",
        "https://*.google.co.in/*"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/commonForSearch.js",
        "js/google.js"
      ]
    },
    {
      "matches": [
        "http://*.yahoo.com/*",
        "https://*.yahoo.com/*"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/commonForSearch.js",
        "js/yahoo.js"
      ]
    },
    {
      "matches": [
        "http://*.bing.com/*",
        "https://*.bing.com/*"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/commonForSearch.js",
        "js/bing.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "<all_urls>",
    "storage",
    "management"
  ],
  "icons": {
    "16": "images/logo16.png",
    "24": "images/logo24.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "64": "images/logo64.png",
    "128": "images/logo128.png"
  },
  "web_accessible_resources": [
    "css/*",
    "images/*",
    "js/*"
  ]
}