Copy HTML

Copy HTML

Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy HTML",
  "description": "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.",
  "version": "3.1.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "js": [
        "src/_js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "src/popup/popup.html",
    "default_icon": "images/icon-512.png"
  },
  "permissions": [
    "storage"
  ],
  "options_page": "src/options/options.html",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png",
    "512": "images/icon-512.png"
  }
}