Append to Clipboard

Append to Clipboard

Simple context menu add-on to append to, rather than replace, current contents of the clipboard. Also with a "clear clipboard" item.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionShortName__",
  "description": "__MSG_extensionDescription__",
  "author": "Brett Zamir",
  "version": "2.3.4",
  "homepage_url": "https://github.com/brettz9/append-to-clipboard/",
  "permissions": [
    "contextMenus",
    "storage",
    "clipboardWrite",
    "clipboardRead",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "polyfills/browser-polyfill.min.js",
      "lib/background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true,
    "chrome_style": true,
    "open_in_tab": false
  },
  "icons": {
    "128": "icon.png"
  },
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "jid0-o20OcJEteABtgjFUKPfXyQhRIQg@jetpack"
    }
  }
}