Thales Smart Card Bridge

Thales Smart Card Bridge

Provides the payShield Manager web application with access to the host’s PC/SC smart card reader.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Thales Smart Card Bridge",
  "version": "1.0.6",
  "manifest_version": 3,
  "description": "Provides the payShield Manager web application with access to the host’s PC/SC smart card reader.",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "bridgeProxy.js"
  }
}