Copy & Paste Without Formatting

Copy & Paste Without Formatting

Always copy as plain text. Remove all formatting when copying text on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_EXT_NAME__",
  "description": "__MSG_EXT_DESCRIPTION__",
  "version": "1.0.2",
  "manifest_version": 3,
  "default_locale": "en",
  "minimum_chrome_version": "109",
  "permissions": [
    "scripting",
    "clipboardWrite",
    "storage",
    "offscreen"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/clipboard.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_EXT_NAME_SHORT__"
  }
}