PkiUtils

PkiUtils

Manage user certificates and certificate requests from Windows Certificate Store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.4",
  "homepage_url": "http://pkiutils.lfernsplay.com",
  "manifest_version": 2,
  "author": "[email protected]",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "180": "icons/icon-180.png",
    "192": "icons/icon-192.png",
    "512": "icons/icon-512.png"
  },
  "browser_action": {
    "default_title": "PkiUtils",
    "default_popup*": "index.html",
    "default_icon": {
      "16": "icons/icon-16.png"
    }
  },
  "background": {
    "persistent": true,
    "scripts": [
      "utils.js",
      "background.js",
      "assets/hot-reload.js"
    ]
  },
  "permissions": [
    "nativeMessaging",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "file:///*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/*.png"
  ]
}