Clipboard History Manager

Clipboard History Manager

A full-featured desktop clipboard manager for Mac, Windows and Linux to record what you copy to the clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.2.1",
  "name": "Clipboard History Manager",
  "description": "A full-featured desktop clipboard manager for Mac, Windows and Linux to record what you copy to the clipboard",
  "offline_enabled": true,
  "permissions": [
    "idle",
    "storage",
    "nativeMessaging",
    "unlimitedStorage"
  ],
  "homepage_url": "https://add0n.com/clipboard-manager.html",
  "background": {
    "scripts": [
      "monitor.js",
      "md5.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "data/icons/16.png",
    "19": "data/icons/19.png",
    "32": "data/icons/32.png",
    "38": "data/icons/38.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png",
    "512": "data/icons/512.png"
  },
  "browser_action": {},
  "commands": {
    "open": {
      "description": "Open the manager in a standalone window"
    }
  },
  "options_ui": {
    "page": "data/options/index.html",
    "chrome_style": true,
    "open_in_tab": true
  }
}