Personal Clipboard

Personal Clipboard

Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Personal Clipboard",
  "description": "Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.",
  "author": "Richard Gao",
  "version": "1.0.1",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "Open Clipboard"
    }
  },
  "icons": {
    "16": "clipboard16.png",
    "48": "clipboard48.png",
    "128": "clipboard128.png"
  },
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "storage",
    "unlimitedStorage"
  ]
}