CopyPaste

CopyPaste

The simplest tool for copying from PC to phone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CopyPaste",
  "description": "The simplest tool for copying from PC to phone",
  "version": "1.0",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "permissions": [
    "contextMenus",
    "http://cp.westkit.org/"
  ],
  "browser_action": {
    "default_icon": "img/icon-128.png",
    "default_popup": "CopyPaste.html",
    "default_title": "CopyPaste - The simplest tool for copying from PC to phone"
  }
}