autoCopyText™

autoCopyText™

Copy the text when select any text on webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1",
  "name": "autoCopyText™",
  "author": "vineet sahu",
  "description": "Copy the text when select any text on webpage",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "./icons/autoCopy128x128.png"
  },
  "icons": {
    "16": "./icons/autoCopy16x16.png",
    "24": "./icons/autoCopy24x24.png",
    "48": "./icons/autoCopy48x48.png",
    "128": "./icons/autoCopy128x128.png"
  },
  "short_name": "autoCopy",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "version_name": "sahuchahu - 0.1",
  "manifest_version": 2
}