USAA MemberShop® button

USAA MemberShop® button

Activate cash back directly at over 900 online stores while you shop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "USAA MemberShop® button",
  "version": "3.2.13",
  "description": "Activate cash back directly at over 900 online stores while you shop.",
  "homepage_url": "https://mall.usaa.com",
  "author": "Cartera",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "storage",
    "unlimitedStorage",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "bg/bundle.js"
  },
  "content_scripts": [
    {
      "js": [
        "content/bundle.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon-48.png",
      "32": "img/icon-48.png"
    },
    "default_title": "MemberShop® button"
  },
  "icons": {
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content/*.css",
        "content/*.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}