Privacy | Protect Your Payments

Privacy | Protect Your Payments

Protect yourself from fraud and identity theft with disposable card numbers for use online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Privacy | Protect Your Payments",
  "homepage_url": "https://privacy.com",
  "description": "Protect yourself from fraud and identity theft with disposable card numbers for use online",
  "version": "2.3.0",
  "icons": {
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.lithic.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "interstitial.html",
        "interstitial.js",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Pay with Privacy",
    "default_icon": {
      "16": "icons/toolbar-icon-16.png",
      "19": "icons/toolbar-icon-19.png",
      "32": "icons/toolbar-icon-32.png",
      "38": "icons/toolbar-icon-38.png"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ]
}