Ctrl + Shift + C Should Copy

Ctrl + Shift + C Should Copy

Intercepts Ctrl+Shift+C, blocks opening developer tools, and copies the selection to the clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Ctrl + Shift + C Should Copy",
  "description": "Intercepts Ctrl+Shift+C, blocks opening developer tools, and copies the selection to the clipboard. Icon from https://www.iconsdb.com/blue-icons/copy-icon.html.",
  "version": "0.1.0",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "78.0"
    }
  },
  "developer": {
    "name": "Jefferson \"jscher2000\" Scher",
    "url": "https://github.com/jscher2000/"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>"
  ],
  "icons": {
    "256": "ctrl-shift-c-256.png"
  }
}