Sift Rewards and Cashback - Shop and Earn

Sift Rewards and Cashback - Shop and Earn

Get rewarded when you shop at your favorite stores. Sift Rewards provides you cashback for shopping and sharing with your friends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.3.0",
  "name": "Sift Rewards and Cashback - Shop and Earn",
  "short_name": "Sift Rewards",
  "description": "Get rewarded when you shop at your favorite stores. Sift Rewards provides you cashback for shopping and sharing with your friends.",
  "icons": {
    "128": "img/icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "notifications",
    "background",
    "webRequest",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": "img/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": [
        "earnings.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "shoppay.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}