Copy Element ID

Copy Element ID

Copies Selected Element ID to Clipboard via Right-Click context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Element ID",
  "description": "Copies Selected Element ID to Clipboard via Right-Click context menu",
  "version": "1.46",
  "permissions": [
    "contextMenus",
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "ico/appIcon16.png",
    "48": "ico/appIcon48.png",
    "128": "ico/appIcon128.png"
  },
  "manifest_version": 2
}