ClearClipboard

ClearClipboard

Clears the clipboard when you click the CC button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ClearClipboard",
  "version": "1.1",
  "description": "Clears the clipboard when you click the CC button",
  "icons": {
    "48": "icons/border-48.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/page-16.png",
      "32": "icons/page-32.png"
    },
    "default_title": "Clear Clipboard",
    "default_popup": "popup/clear.html"
  },
  "permissions": [
    "clipboardWrite"
  ]
}