Multi Copy

Multi Copy

Extension shall provide user with the Capability to Copy and Paste Multiple Items

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Multi Copy",
  "description": "Extension shall provide user with the Capability to Copy and Paste Multiple Items",
  "version": "1.0",
  "browser_action": {
    "default_icon": "copyPaste.png",
    "default_popup": "copyInfo.html",
    "default_title": "Multiple Copy Paste"
  },
  "options_page": "settings.html",
  "permissions": [
    "storage",
    "notifications",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./scripts/contentScript.js",
        "./scripts/jquery.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "./scripts/eventPage.js"
    ]
  }
}