CouponsHelper

CouponsHelper

Retrieves coupons while browsing merchant sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CouponsHelper",
  "default_locale": "en_US",
  "version": "2.0.0.0",
  "version_name": "2.0.0.0",
  "author": "Michel Gutierrez",
  "description": "Retrieves coupons while browsing merchant sites",
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "webNavigation",
    "notifications",
    "webRequest",
    "clipboardWrite"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "32": "content/images/icon-32.png",
    "40": "content/images/icon-40.png",
    "48": "content/images/icon-48.png",
    "128": "content/images/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "40": "content/images/icon-40.png"
    },
    "default_title": "CouponsHelper",
    "default_popup": "content/popup.html"
  },
  "options_page": "content/settings.html?panel=settings",
  "web_accessible_resources": [
    "content/images/icon-18.png"
  ]
}