Text Copy

Copy input text to the clipboard for easy pasting.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Text Copy",
  "version": "1.0",
  "description": "Copy input text to the clipboard for easy pasting.",
  "icons": {
    "48": "icon.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "clipboardWrite"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{9121f768-e42c-4cf9-b4d3-47959e931aec}"
    }
  }
}