PriceBlink - Price Comp & Coupons

PriceBlink - Price Comp & Coupons

**As seen on the Today Show, USA Today, ABC News** Automatically finds lower prices and money-saving coupons from thousands of retailers while you shop. PriceBlink stays hidden until you are shopping. US and UK. Demo: youtu.be/UKxMx5bT-QM

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "PriceBlink Coupons and Price Comparison",
  "short_name": "PriceBlink",
  "version": "8.66",
  "description": "Finds Coupons and Compares Prices while you shop. Shows savings when you're shopping, otherwise it stays hidden.",
  "permissions": [
    "http://*/",
    "https://*/",
    "tabs",
    "webRequest",
    "storage",
    "alarms"
  ],
  "background": {
    "scripts": [
      "background.js",
      "purify.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/jquery.min.js",
        "main.js",
        "purify.js",
        "js/autocoupons.js",
        "js/autoapplycoupons.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": false,
      "js": [
        "early.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "fonts/*",
    "images/*",
    "html/*",
    "js/*",
    "css/*"
  ],
  "browser_action": {
    "default_icon": "images/icon_16.png",
    "default_title": "PriceBlink",
    "default_popup": "coupons_popup.html"
  },
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "51.0a1"
    }
  }
}