Examine source code of FEPWeb CMS Digital Signature Extension

Inspect and view changes in FEPWeb CMS Digital Signature Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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.6",
  "background": {
    "service_worker": "service_worker.js"
  },
  "icons": {
    "16": "fepweb.ico",
    "48": "fepweb-48x48.png",
    "128": "fepweb-120x120.png"
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "activeTab",
    "background"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo_fepweb.png",
        "manifest.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "action": {
    "default_icon": "fepweb-120x120.png",
    "default_popup": "popup.html",
    "default_title": "Click to see FEPWeb extension information."
  },
  "content_security_policy": {},
  "host_permissions": [
    "http://*/",
    "https://*/",
    "file://*/"
  ]
}