ManyClip

ManyClip

A stack based copy/paste extension for Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ManyClip",
  "description": "A stack based copy/paste extension for Chrome.",
  "version": "0.2.0",
  "offline_enabled": true,
  "browser_action": {
    "default_icon": "icons/manyclip_48.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/manyclip_16.png",
    "48": "icons/manyclip_48.png",
    "128": "icons/manyclip_128.png"
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "clipboardRead",
    "storage",
    "unlimitedStorage"
  ]
}