Copy Text Without Formatting

Copy Text Without Formatting

The "Copy Text Without Format" Firefox extension simplifies text copying from web pages. It removes formatting, ensuring plain text is copied, ideal for seamless pasting without unwanted styles. Streamlining the process, it enhances productivity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Copy Text Without Formatting",
  "version": "1.0",
  "description": "A Firefox extension to copy selected text without formatting.",
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardWrite"
  ],
  "icons": {
    "48": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icon.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{27cc8f0a-8ba9-452c-bfaf-49bfce75020e}"
    }
  }
}