IIT End User CA-1. Sign (web-extension)

IIT End User CA-1. Sign (web-extension)

Designed to control private keys and certificates of CA users and to sign and encrypt user data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "js/WebExtension.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "minimum_chrome_version": "88",
  "host_permissions": [
    "https://iit.com.ua/download/productfiles/"
  ],
  "name": "__MSG_app_name__",
  "default_locale": "uk",
  "author": "АТ \"ІІТ\"",
  "icons": {
    "16": "icons/TabBar.16.png",
    "32": "icons/TabBar.32.png",
    "64": "icons/TabBar.64.png",
    "128": "icons/TabBar.128.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "views/settings/settings.html",
    "open_in_tab": true
  },
  "version": "1.3.1.11",
  "options_page": "views/settings/settings.html",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icons/TabBar.16.png",
      "32": "icons/TabBar.32.png",
      "64": "icons/TabBar.64.png",
      "128": "icons/TabBar.128.png"
    },
    "default_popup": "views/popup/popup.html"
  },
  "permissions": [
    "nativeMessaging",
    "storage"
  ],
  "description": "__MSG_app_description__"
}