PerkSpot Chrome Extension

PerkSpot Chrome Extension

Take the savings of your Discount Program with you wherever you shop online!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "25.5.2.0",
  "manifest_version": 3,
  "name": "PerkSpot Chrome Extension",
  "description": "Take the savings of your Discount Program with you wherever you shop online!",
  "icons": {
    "16": "img/ps-16.png",
    "48": "img/ps-48.png",
    "128": "img/ps-128.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "/static/js/modalLegacy.js",
        "/static/js/modals.js"
      ]
    }
  ],
  "background": {
    "service_worker": "/static/js/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "tabs",
    "cookies",
    "identity",
    "webNavigation",
    "clipboardWrite"
  ],
  "host_permissions": [
    "https://perkspot.oktapreview.com/v1/introspect",
    "*://*.perkspot.com/*",
    "*://*.perkspot.local/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.perkspot.com/*",
      "*://*.perkspot.local/*"
    ]
  }
}