PriceBlink Lite - Coupons & Price Comparison

PriceBlink Lite - Coupons & Price Comparison

Checks for Lower Prices and Money-Saving coupons with just one click. On-demand version of the popular PriceBlink extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PriceBlink Lite - Coupons & Price Comparison",
  "short_name": "PB Lite",
  "version": "3.4",
  "description": "Checks for Lower Prices and Money-Saving coupons with just one click.  On-demand version of the popular PriceBlink extension.",
  "permissions": [
    "http://*/",
    "https://*/",
    "tabs",
    "webNavigation",
    "webRequest"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "main.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_title": "PriceBlink",
    "default_popup": "status.html"
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "options_page": "options.html"
}