Cyber-Ark Clipboard Extension

Cyber-Ark Clipboard Extension

Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cyber-Ark Clipboard Extension",
  "version": "2.1",
  "description": "Provides integration for Cyber-Ark products with the user's clipboard. (C) Cyber-Ark Software, Ltd. All rights reserved.",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "clipboardWrite"
  ],
  "content_security_policy": "default-src 'self'",
  "icons": {
    "48": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "clipboardextensionchrome.js"
      ]
    }
  ]
}