ClipCopy for Tampermonkey

ClipCopy for Tampermonkey

Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "ClipCopy for Tampermonkey",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API",
  "icons": {
    "16": "/img/icon16.png",
    "48": "/img/icon48.png",
    "128": "/img/icon128.png"
  },
  "background": {
    "page": "/bg/background.html"
  },
  "options_page": "/about/about.html",
  "permissions": [
    "clipboardWrite",
    "storage"
  ]
}