ESCB-PKI user certificate enrollment

ESCB-PKI user certificate enrollment

This extension enables the management of cryptographic devices (smartcards and/or tokens) for European System of Central Banks PKI…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ESCB-PKI user certificate enrollment",
  "version": "1.3",
  "author": "SIA by Indra",
  "icons": {
    "128": "ESCB-PKI.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "IndraToken.js"
      ],
      "matches": [
        "https://*.bde.es/*",
        "https://*.escb.eu/*"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.bde.es/*",
        "https://*.escb.eu/*"
      ],
      "include_globs": [
        "*/dcpuser/*",
        "*/epkmain/*",
        "*/epkuser/*",
        "*/epkchck/*",
        "*/epkcomp/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}