Share Links and Clipboard

Share Links and Clipboard

Open Links in another browser or share clipboard between multiple machines using WebSockets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.1.4",
  "name": "Share Links and Clipboard",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "notifications",
    "storage",
    "contextMenus",
    "clipboardRead",
    "clipboardWrite"
  ],
  "homepage_url": "https://add0n.com/send-links.html",
  "background": {
    "scripts": [
      "peer/safe.js",
      "peer/peer.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png",
    "512": "data/icons/512.png"
  },
  "browser_action": {
    "default_title": "Left-click to join the network or disconnect from it. If the token is not present, the options page will be opened. Use the right-click menu to send the page link to a computer in your network."
  },
  "options_ui": {
    "page": "data/options/index.html",
    "chrome_style": true
  }
}