CSPI Check Scanner for WebDeposit

CSPI Check Scanner for WebDeposit

Allows access to check scanners for creating web deposits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CSPI Check Scanner for WebDeposit",
  "version": "1.6",
  "manifest_version": 2,
  "description": "Allows access to check scanners for creating web deposits.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "css": [
        "scan-page-styles.css"
      ],
      "js": [
        "scannerCommands.js"
      ],
      "matches": [
        "*://*.dynamicdatacenter.com/*",
        "*://*.webdeposit.xyz/*",
        "*://*.webdeposit.net/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.dynamicdatacenter.com/*",
      "*://*.webdeposit.xyz/*",
      "*://*.webdeposit.net/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}