EZGiftCard

EZGiftCard

Easily manage and spend your gift cards from the extension while shopping online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Easily manage and spend your gift cards from the extension while shopping online.",
  "version": "1.0.3",
  "name": "EZGiftCard",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "ez-logo-gray.png"
  },
  "icons": {
    "128": "ez-logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "ez-logo.png",
    "ez-logo-gray.png"
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://cdn.segment.com/analytics.js/v1/72ARDweOHcKYRGhp1HFEUtGHdIO6hKIN/analytics.min.js 'unsafe-eval'; object-src 'self'"
}