Multiple Text Clipboard

Multiple Text Clipboard

Copy multiple text items to your browser history. You can easy paste them later

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Multiple Text Clipboard",
  "version": "0.0.0.10",
  "description": "Copy multiple text items to your browser history. You can easy paste them later",
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "clipboardRead",
    "clipboardWrite",
    "storage"
  ],
  "oauth2": {
    "client_id": "466235111473-do77bo1km1u1qng0ei2kmoa0lt1rn5tr.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login",
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "copy": {
      "suggested_key": {
        "default": "Alt+C",
        "windows": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "Copy text"
    },
    "_execute_page_action": {
      "suggested_key": {
        "default": "Alt+V",
        "windows": "Alt+V",
        "mac": "Alt+V"
      }
    }
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2
}