Clipboard Helper

Clipboard Helper

Clipboard helper tool tracks clipboard history + keyboard shortcuts

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "0.8.4",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com blob:; object-src 'self'",
  "permissions": [
    "storage",
    "clipboardRead",
    "clipboardWrite",
    "<all_urls>"
  ],
  "commands": {
    "pasteSecondSelection": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      },
      "description": "Put the first value from the history into the clipboard."
    },
    "pasteThirdSelection": {
      "suggested_key": {
        "default": "Ctrl+Shift+2",
        "mac": "Command+Shift+2"
      },
      "description": "Put the second value from the history into the clipboard."
    },
    "pasteFourthSelection": {
      "suggested_key": {
        "default": "Ctrl+Shift+3",
        "mac": "Command+Shift+3"
      },
      "description": "Put the third value from the history into the clipboard"
    }
  }
}