PC Protect Password Vault Assistant

PC Protect Password Vault Assistant

Access saved passwords from PC Protect's Password Vault, including the ability to generate and save a new password.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "SS Protect",
  "name": "PC Protect Password Vault Assistant",
  "version": "1.1.19",
  "manifest_version": 2,
  "description": "Access saved passwords from PC Protect's Password Vault, including the ability to generate and save a new password.",
  "icons": {
    "128": "shared/images/icon.png"
  },
  "background": {
    "scripts": [
      "shared/js/jquery-3.2.1.js",
      "shared/js/pva.js",
      "shared/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "shared/js/jquery-3.2.1.js",
        "shared/js/pva.js",
        "shared/js/content-msgs.js",
        "shared/js/pwd-generator.js",
        "shared/js/banner.js",
        "shared/js/popup.js",
        "shared/js/content-script.js"
      ],
      "css": [
        "shared/css/content-script.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "nativeMessaging",
    "tabs"
  ],
  "minimum_chrome_version": "49.0",
  "web_accessible_resources": [
    "shared/js/pva.js",
    "shared/js/pwd-generator.js",
    "shared/js/content-msgs.js",
    "shared/js/banner.js",
    "shared/js/popup.js",
    "shared/js/content-script.js",
    "shared/css/content-script.css",
    "shared/html/popup.html",
    "shared/html/pwd-list.html",
    "shared/html/pwd-entry.html",
    "shared/html/pwd-gen.html",
    "shared/html/unlock.html",
    "shared/html/banner.html",
    "shared/images/spinner.svg",
    "shared/images/spinner-light.svg",
    "shared/images/locked.svg",
    "shared/images/unlocked.svg",
    "shared/images/lock-gen.svg",
    "shared/images/lock-gen-dark.svg",
    "shared/images/list.svg",
    "shared/images/logo-toolbar.png",
    "shared/images/default-favicon.png"
  ]
}