FEPWeb CMS Digital Signature Extension

FEPWeb CMS Digital Signature Extension

This extension is used to digitally sign documents with digital certificates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgnvQD5SpFOKgvqhzgYngGp0Nct+YKP2/xwZ7gb1JxJs6be2AEuwAhg4x/rxZglbFNiFmnDlNfBTyjxMumOvyGSvIKn4VWA8gH8hra31niZDERfpTDIx998ZAH1pGhac+qmBkBOyhz/xtGm8KtjFAPnNKndmWRueg1UH49ju8d+uJVKauOF+n62MU016q6Rja/U7hz8FlchrcAV5PwUEQnXkBCWPJU+v6fzq03phY66GYMlSDR0zWIe+qzuoaNv/ZTm6F9Ge+V+Ty4xTAoKQTNNqsQoh8jEDna8KVc6VN7jHj9aO/cw2prAAK0nMuYqBtaPI6ElYBwhsuarSQd8Z4KwIDAQAB",
  "name": "FEPWeb CMS Digital Signature Extension",
  "description": "This extension is used to digitally sign documents with digital certificates.",
  "version": "1.3.4",
  "action": {
    "default_icon": "fepweb-120x120.png",
    "default_popup": "popup.html",
    "default_title": "Click to see FEPWeb extension information."
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "fepweb.ico",
    "48": "fepweb-48x48.png",
    "128": "fepweb-120x120.png"
  },
  "permissions": [
    "nativeMessaging",
    "activeTab",
    "background"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/",
    "file://*/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo_fepweb.png",
        "manifest.json"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}