Zingoy Cashback

Zingoy Cashback

With Zinni, you don’t have to look for cashback. Cashback finds you. 1. Zinni shall remind you You shopping lovers can shop away…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zingoy Cashback",
  "short_name": "Zinni",
  "version": "0.0.9",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "images/48.png",
    "default_title": "Zingoy Cashback"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.co.in/*"
      ],
      "css": [
        "css/zingoy.css"
      ],
      "js": [
        "js/jquery.js",
        "js/chrome.js",
        "js/common.js",
        "js/google.js"
      ]
    },
    {
      "matches": [
        "https://*.google.com/*"
      ],
      "exclude_matches": [
        "https://play.google.com/*"
      ],
      "css": [
        "css/zingoy.css"
      ],
      "js": [
        "js/jquery.js",
        "js/chrome.js",
        "js/common.js",
        "js/google.js"
      ]
    },
    {
      "matches": [
        "https://*.yahoo.com/*",
        "http://*.yahoo.com/*"
      ],
      "css": [
        "css/zingoy.css"
      ],
      "js": [
        "js/jquery.js",
        "js/chrome.js",
        "js/common.js",
        "js/yahoo.js"
      ]
    },
    {
      "matches": [
        "https://*.bing.com/*",
        "http://*.bing.com/*"
      ],
      "css": [
        "css/zingoy.css"
      ],
      "js": [
        "js/jquery.js",
        "js/chrome.js",
        "js/common.js",
        "js/bing.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://*.bing.com/*",
        "http://*.yahoo.com/*",
        "https://*.yahoo.com/*",
        "https://*.google.co.in/*"
      ],
      "css": [
        "css/zingoy.css"
      ],
      "js": [
        "js/chrome.js",
        "js/common.js",
        "js/template.js",
        "js/store.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "35": "images/35.png",
    "48": "images/48.png",
    "72": "images/72.png",
    "96": "images/96.png",
    "144": "images/144.png",
    "192": "images/192.png",
    "512": "images/512.png"
  },
  "web_accessible_resources": [
    "images/zinny-logo.png",
    "images/icon_x.png",
    "images/19.png",
    "images/checkmark.png",
    "images/72.png",
    "images/zinny-close.png"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.zingoy.com/*",
      "https://api.zingoy.com/*"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}