Auto Copy

Auto Copy

Automatically copy selected text to the clipboard. Has many configurable options for controlling the behavior.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Copy",
  "description": "Automatically copy selected text to the clipboard. Has many configurable options for controlling the behavior.",
  "version": "4.2.1",
  "icons": {
    "128": "assets/autoCopy-128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "style-src 'unsafe-inline'; default-src 'self'",
  "minimum_chrome_version": "22",
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "notifications",
    "clipboardRead",
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "js/autoCopy.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}