Enable Clipboard

Enable Clipboard

Enable clipboard and context menu in disabled websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enable Clipboard",
  "version": "1.0",
  "description": "Enable clipboard and context menu in disabled websites",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "128": "images/img_enabled128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "images/img_disabled128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ]
}