Enable Copy

Enable Copy

Allow selecting, copying, pasting and right clicking in some restricted pages.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "description": "Allow selecting, copying, pasting and right clicking in some restricted pages.",
  "version": "6.1",
  "name": "Enable Copy",
  "icons": {
    "16": "icon/icon19.png",
    "128": "icon/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon/icon19.png"
    },
    "default_title": "Enable Copy"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.content.ts.a4d9a5cb.e95b4894.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "declarativeNetRequest",
    "scripting"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/chunk-QIZ4XBKF.19129500.js",
        "assets/content.ts.a4d9a5cb.js"
      ],
      "use_dynamic_url": true
    }
  ]
}