Copy Text Easily

Copy Text Easily

A simple and hassle free way to copy text, paragraphs, sentences and custom selections in browser.

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 Text Easily",
  "version": "0.2.0",
  "description": "A simple and hassle free way to copy text, paragraphs, sentences and custom selections in browser.",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "images/enabled.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/enabled.png",
    "48": "images/enabled.png",
    "128": "images/enabled.png"
  },
  "short_name": "Copy Text"
}