Permanent clipboard

Permanent clipboard

Allows you to store and access multiple elements in clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "constants.js",
      "analytics.js",
      "storage.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "constants.js",
        "contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "img/icon-16.png",
    "128": "img/icon-128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "version": "2.5.5",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}