Drop: Shop Offers & Earn Cash Back

Drop: Shop Offers & Earn Cash Back

Save at over 500 brands! Earn points back when you shop & redeem them for free gift cards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Drop: Shop Offers & Earn Cash Back",
  "short_name": "Drop",
  "description": "Save at over 500 brands! Earn points back when you shop & redeem them for free gift cards.",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-inactive.png",
    "default_title": "Drop: Shop the brands you love and get rewarded",
    "default_popup": "popup.html"
  },
  "permissions": [
    "identity",
    "storage",
    "tabs",
    "*://*/*",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' https://www.google.com https://www.gstatic.com https://appleid.cdn-apple.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "./content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/*"
  ],
  "version": "2.1.4",
  "version_name": "2.1.4",
  "externally_connectable": {
    "ids": [],
    "matches": []
  },
  "background": {
    "scripts": [
      "./background.js"
    ],
    "persistent": false
  }
}