XML Signer Extension

XML Signer Extension

Digital Signature Provider

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "XML Signer Extension",
  "short_name": "XML Signer Extension",
  "description": "Digital Signature Provider",
  "version": "1.2.1.0",
  "author": "Croc Inc.",
  "homepage_url": "https://websbor.gks.ru/online/",
  "icons": {
    "16": "icon.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "applications": {
    "gecko": {
      "id": "xmlsigner@croc.ru",
      "strict_min_version": "52.0"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "./content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "crocxmlsigner.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging"
  ]
}