Copy Element Text

Copy Element Text

Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "jq.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jq.js",
        "content.js"
      ],
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.",
  "manifest_version": 2,
  "name": "Copy Element Text",
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardWrite",
    "clipboardRead"
  ],
  "short_name": "Copy ELement Text",
  "version": "0.0.2"
}