Lootup Deal Finder

Lootup Deal Finder

Earn cash back and save money effortlessly with Lootup while shopping at countless online retailers.

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.2",
  "action": {
    "default_popup": "index.html",
    "default_title": "Lootup Deal Finder",
    "default_icon": {
      "16": "icons/grey/16.png",
      "24": "icons/grey/24.png",
      "32": "icons/grey/32.png"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "static/js/contentscript.js"
      ],
      "css": [
        "static/css/contentscript.css"
      ]
    },
    {
      "matches": [
        "*://localhost/*",
        "https://kindred.co/*",
        "https://*.kindred.co/*",
        "https://kindred-customer-website-flapjack.azurewebsites.net/*",
        "https://kindred-customer-website-blizzard.azurewebsites.net/*"
      ],
      "js": [
        "static/js/browsercompat.js"
      ]
    }
  ],
  "short_name": "Lootup Deal Finder",
  "name": "Lootup Deal Finder",
  "description": "Earn cash back and save money effortlessly with Lootup while shopping at countless online retailers.",
  "default_locale": "en",
  "icons": {
    "16": "icons/color/16.png",
    "48": "icons/color/48.png",
    "128": "icons/color/128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://lootup.me/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/media/*.*",
        "static/css/*.*",
        "static/js/*.*",
        "icons/*.*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "minimum_chrome_version": "88"
}