Pennyful CashBack India

Pennyful CashBack India

The Pennyful CashBack 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": "Pennyful CashBack India",
  "version": "1.9",
  "manifest_version": 2,
  "short_name": "Pennyful Cashback India",
  "description": "The Pennyful CashBack chrome extension makes earning CashBack and finding coupons convenient.",
  "homepage_url": "http://www.pennyful.in/",
  "incognito": "split",
  "browser_action": {
    "default_icon": "24.png",
    "default_title": "Pennyful"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.bing.com/*",
        "https://*.bing.com/*"
      ],
      "css": [
        "styles/pennyful.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/chrome.js",
        "js/common.js",
        "js/bing.js"
      ]
    },
    {
      "matches": [
        "http://*.yahoo.com/*",
        "https://*.yahoo.com/*"
      ],
      "css": [
        "styles/pennyful.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/chrome.js",
        "js/common.js",
        "js/yahoo.js"
      ]
    },
    {
      "matches": [
        "https://*.google.com/*"
      ],
      "css": [
        "styles/pennyful.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/chrome.js",
        "js/common.js",
        "js/google.js"
      ]
    },
    {
      "matches": [
        "https://*.google.co.in/*"
      ],
      "css": [
        "styles/pennyful.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/chrome.js",
        "js/common.js",
        "js/google.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://*.bing.com/*",
        "http://*.yahoo.com/*",
        "https://*.yahoo.com/*",
        "https://*.google.com/*",
        "https://*.google.co.in/*"
      ],
      "css": [
        "styles/pennyful.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/chrome.js",
        "js/common.js",
        "js/template.js",
        "js/storepage.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/",
    "https://*/",
    "http://webmanager.pennyful.com/*",
    "http://webmanager.pennyful.in/*",
    "http://www.pennyful.com/*",
    "http://www.pennyful.in/*"
  ],
  "icons": {
    "16": "icon.png",
    "19": "19.png",
    "24": "24.png",
    "48": "48.png",
    "128": "128.png"
  },
  "web_accessible_resources": [
    "images/favicon.png",
    "images/icon_x.png",
    "images/btng_tick.png",
    "images/bubble_arrow.png",
    "images/usa-flag.png",
    "images/banner/logo_fav.png",
    "images/banner/pop_bot_arrow.png",
    "js/jquery.min.map"
  ]
}