Copy Input Text

Copy Input Text

Copies all input text without selecting it. Allows to copy password text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Dima PM",
  "manifest_version": 2,
  "name": "Copy Input Text",
  "version": "0.1",
  "description": "Copies all input text without selecting it. Allows to copy password text.",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "commands": {
    "copy-input-text": {
      "description": "Copy input text"
    }
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ]
}