Paste On Screen

Paste On Screen

Show contents of the clipboard in a popup with large font.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Paste On Screen",
  "version": "1.03",
  "manifest_version": 2,
  "description": "Show contents of the clipboard in a popup with large font.",
  "permissions": [
    "clipboardRead",
    "storage"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_title": "Paste On Screen",
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "clip32.png",
    "64": "clip64.png",
    "128": "clip128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+V",
        "mac": "Command+Shift+V",
        "chromeos": "Ctrl+Shift+V",
        "linux": "Ctrl+Shift+V"
      }
    }
  }
}