Clubpoints Catcher

Clubpoints Catcher

Clubpoints Catcher enhances your shopping experience with The Club by displaying relevant offers on your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.9",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "128": "img/P.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/p_gray.png",
    "default_title": "__MSG_appName__"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*authorization-in-progress.html*",
        "https://*/*authorization-in-progress.html*"
      ],
      "js": [
        "js/authed.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*.*",
        "*.png",
        "*.svg",
        "*.css",
        "*.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "author": "[email protected]",
  "homepage_url": "https://www.theclub.com.hk"
}