Copy Paste Pro

Copy Paste Pro

Enable Copy , Paste , Select Text , Right Click On Websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Copy Paste Pro",
  "version": "0.5.0",
  "description": "Enable  Copy , Paste , Select Text , Right Click On Websites",
  "author": "Sutu",
  "browser_action": {
    "default_title": "Copy Paste Pro is Disabled",
    "default_icon": "disable.png"
  },
  "icons": {
    "64": "copy_past_pro.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}