Authorize.Net Point of Sale

Authorize.Net Point of Sale

This Chrome Extension is a component of Authorize.Net Point-of-Sale tools.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Authorize.Net Point of Sale",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "This Chrome Extension is a component of Authorize.Net Point-of-Sale tools.",
  "externally_connectable": {
    "matches": [
      "*://*.authorize.net/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "nativeMessaging",
    "*://*.authorize.net/*"
  ],
  "web_accessible_resources": [
    "icon-128.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.authorize.net/*"
      ],
      "js": [
        "content_scripts/vpos-content-script.js"
      ]
    }
  ]
}