Allow Copy Plain Text

Allow Copy Plain Text

Allow Easily copy the selected text without formatting to the clipboard via the right-click menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "content.css"
      ],
      "js": [
        "content-script.js.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Allow Easily copy the selected text without formatting to the clipboard via the right-click menu.",
  "homepage_url": "https://www.downloadhub.cloud/2022/12/allow-copy-plain-text.html",
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "manifest_version": 3,
  "name": "Allow Copy Plain Text",
  "offline_enabled": true,
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "clipboardWrite"
  ],
  "short_name": "plain-text-copy",
  "version": "1.2"
}