The RebatesMe Cash Back Button

The RebatesMe Cash Back Button

Automatically Finds You The Highest Cash Back Rate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The RebatesMe Cash Back Button",
  "version": "1.0.8",
  "description": "Automatically Finds You The Highest Cash Back Rate",
  "homepage_url": "https://www.rebatesme.com/",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "cookies",
    "webNavigation",
    "storage",
    "<all_urls>",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "vendors/bundle.js",
        "content/bundle.js"
      ],
      "css": [
        "content/styles.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "vendors/bundle.js",
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-disabled.png",
    "default_title": "The RebatesMe Cash Back Button"
  },
  "icons": {
    "16": "icon-32.png",
    "18": "icon-32.png",
    "32": "icon-32.png",
    "128": "icon-128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://platform-api.sharethis.com https://buttons-config.sharethis.com; object-src 'self'",
  "web_accessible_resources": [
    "*.svg",
    "*.png",
    "*.css"
  ]
}