Lhasa Clipboard Extension

Lhasa Clipboard Extension

Supports clipboard paste operations in Lhasa web applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Lhasa Clipboard Extension",
  "version": "1.0.0",
  "description": "Supports clipboard paste operations in Lhasa web applications.",
  "icons": {
    "16": "icons/lhasa-16.png",
    "32": "icons/lhasa-32.png",
    "48": "icons/lhasa-48.png",
    "128": "icons/lhasa-128.png"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}