Secret Server Web Password Filler

Secret Server Web Password Filler

Secret Server Web Password Filler extension has a new modern look and feel and provides secure access to your web based Secrets. This extension requires use and integration with Secret Server version 10.7.59 and later.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "3.3",
  "manifest_version": 2,
  "short_name": "Secret Server Web Password Filler",
  "author": "Delinea Software LLC",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "icons/16-icon-active.png",
    "19": "icons/19-icon-active.png",
    "48": "icons/48-icon-active.png",
    "128": "icons/128-icon-active.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "encryption/CanvasRecorder.js",
      "encryption/thycotic-pb.js",
      "encryption/System.js",
      "encryption/System.BigInt.js",
      "encryption/System.IO.js",
      "encryption/System.Text.js",
      "encryption/System.Convert.js",
      "encryption/System.BitConverter.js",
      "encryption/System.Security.Cryptography.SHA1.js",
      "encryption/System.Security.Cryptography.js",
      "encryption/System.Security.Cryptography.RSA.js",
      "encryption/System.Security.Cryptography.HMACSHA1.js",
      "encryption/System.Security.Cryptography.AES.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16-icon-inactive.png",
      "19": "icons/19-icon-inactive.png",
      "48": "icons/48-icon-inactive.png",
      "128": "icons/128-icon-inactive.png"
    },
    "default_title": "Secret Server Web Password Filler",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "alarms",
    "contextMenus",
    "storage",
    "tabs",
    "activeTab",
    "<all_urls>",
    "webRequest",
    "webNavigation",
    "cookies",
    "nativeMessaging",
    "clipboardWrite"
  ],
  "web_accessible_resources": [
    "icons/*",
    "*.css",
    "fonts/*",
    "images/*"
  ],
  "content_security_policy": "script-src 'self'; style-src 'self' data: 'unsafe-inline'; object-src 'self'; frame-src 'self'; font-src 'self'; media-src * data: blob: filesystem:;",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}