Copy By Select

Copy By Select

Copies text to clipboard after it was selected.

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 By Select",
  "version": "0.2",
  "description": "Copies text to clipboard after it was selected.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite",
    "notifications"
  ]
}