Quick Copy

Quick Copy

A super-powered clipboard for browsers! Use up to 10 configurable shortcuts for copying and pasting, persist clipboard contents across browser restarts, and manage/edit your clipboard contents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Quick Copy",
  "description": "A superpowered clipboard inside your browser.",
  "version": "2.0.0",
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "clipboardRead"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_scripts/main.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_title": "Quick Copy",
    "default_popup": "browser_action/index.html"
  },
  "background": {
    "page": "background/index.html"
  },
  "commands": {
    "copy-1": {
      "suggested_key": {
        "default": "Alt+Shift+1"
      },
      "description": "Copy text into slot 1"
    },
    "copy-2": {
      "suggested_key": {
        "default": "Alt+Shift+2"
      },
      "description": "Copy text into slot 2"
    },
    "copy-3": {
      "suggested_key": {
        "default": "Alt+Shift+3"
      },
      "description": "Copy text into slot 3"
    },
    "copy-4": {
      "suggested_key": {
        "default": "Alt+Shift+4"
      },
      "description": "Copy text into slot 4"
    },
    "copy-5": {
      "suggested_key": {
        "default": "Alt+Shift+5"
      },
      "description": "Copy text into slot 5"
    },
    "paste-1": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Paste text from slot 1"
    },
    "paste-2": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Paste text from slot 2"
    },
    "paste-3": {
      "suggested_key": {
        "default": "Ctrl+Shift+3"
      },
      "description": "Paste text from slot 3"
    },
    "paste-4": {
      "suggested_key": {
        "default": "Ctrl+Shift+4"
      },
      "description": "Paste text from slot 4"
    },
    "paste-5": {
      "suggested_key": {
        "default": "Ctrl+Shift+5"
      },
      "description": "Paste text from slot 5"
    }
  }
}