Synchrony Mastercard Browser Extension

Synchrony Mastercard Browser Extension

Secure online shopping with the ease of a virtual card.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.73",
  "manifest_version": 3,
  "name": "Synchrony Mastercard Browser Extension",
  "short_name": "Synchrony Mastercard Browser Extension",
  "description": "Secure online shopping with the ease of a virtual card.",
  "permissions": [
    "alarms",
    "declarativeNetRequest",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "Synchrony Mastercard Browser Extension",
    "default_icon": "assets/images/icon-blue-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "assets/images/icon-blue-48.png",
    "128": "assets/images/icon-blue-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/**"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://pvapp.synchronycredit.com/incubation/login/*"
    ]
  },
  "commands": {
    "pop_widget": {
      "suggested_key": {
        "default": "Alt+Shift+E",
        "mac": "Alt+Shift+E"
      },
      "description": "Pop the content script on the current page."
    }
  }
}