Melio Secure Payment

Melio Secure Payment

Control spending & earn the rewards of your American Express® U.S. Corporate and Business Card with Melio Secure Payment.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Melio Secure Payment",
  "description": "Control spending & earn the rewards of your American Express® U.S. Corporate and Business Card with Melio Secure Payment.",
  "version": "1.0.1",
  "version_name": "",
  "icons": {
    "16": "./assets/icons/icon16.png",
    "32": "./assets/icons/icon32.png",
    "48": "./assets/icons/icon48.png",
    "128": "./assets/icons/icon128.png"
  },
  "action": {
    "default_title": "Melio Secure Payment. Click here to view and use your Virtual Cards"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://app.meliopayments.com/*",
      "https://app.melio.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}