DollarSprout Rewards: Automatic Cash Back

DollarSprout Rewards: Automatic Cash Back

With DollarSprout Rewards, you’ll earn free cash back on your online purchases at over 15,000 retailers with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.3.3",
  "name": "DollarSprout Rewards: Automatic Cash Back",
  "short_name": "DS Rewards",
  "description": "With DollarSprout Rewards, you’ll earn free cash back on your online purchases at over 15,000 retailers with a single click",
  "icons": {
    "128": "img/extension-icon.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "notifications",
    "background",
    "webRequest",
    "unlimitedStorage",
    "cookies"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": "img/extension-icon-disabled.png"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "browser-polyfill.min.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "fonts/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "auth.html",
        "earnings.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "shoppay.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}