Copy Input Text

Copies all input text without selecting it. Allows to copy password text.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Dima PM",
  "manifest_version": 3,
  "name": "Copy Input Text",
  "version": "0.2",
  "description": "Copies all input text without selecting it. Allows to copy password text.",
  "background": {
    "service_worker": "sw.js"
  },
  "commands": {
    "copy-input-text": {
      "description": "Copy input text"
    }
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "scripting",
    "offscreen",
    "clipboardWrite"
  ]
}