Cyberian Paste Pro

Cyberian Paste Pro

Enable Paste , Copy , Cut , 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": "Cyberian Paste Pro",
  "version": "2.6.3",
  "description": "Enable Paste , Copy , Cut , Select Text , Right Click On Websites",
  "author": "Cyberian",
  "browser_action": {
    "default_title": "Cyberian Paste Pro is Disabled",
    "default_icon": "disable.png"
  },
  "icons": {
    "64": "past_pro.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}