Coupons

Coupons

A Google Chrome extension that searches the web for active Coupon Codes & Promo-Offers for the shopping website you are browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Coupons",
  "description": "A Google Chrome extension that searches the web for active Coupon Codes & Promo-Offers for the shopping website you are browsing.",
  "version": "1.0.3",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Google Chrome Coupons Extension",
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_popup": "popup.html",
    "popup": "popup.html"
  },
  "permissions": [
    "http://discountsandcoupons.in/",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "css": [
        "dncstyles.css"
      ],
      "js": [
        "dncscript.js"
      ],
      "run_at": "document_idle"
    }
  ]
}