Cody Paste - the QRCode Clipboard

Cody Paste - the QRCode Clipboard

Paste any text-snippet into QR-Codes via shortcut (Windows: Ctrl+Shift+V | OSX: Cmd+Shift+V). And scan it with your smartphone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cody Paste - the QRCode Clipboard",
  "short_name": "Cody Paste",
  "description": "Paste any text-snippet into QR-Codes via shortcut (Windows: Ctrl+Shift+V | OSX: Cmd+Shift+V). And scan it with your smartphone.",
  "author": "Daniel Loy",
  "homepage_url": "https://github.com/loybert",
  "offline_enabled": true,
  "version": "0.4",
  "icons": {
    "16": "assets/logo19.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "browser_action": {
    "default_icon": "assets/logo19.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "clipboardRead"
  ],
  "background": {
    "page": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+V",
        "mac": "Command+Shift+V",
        "chromeos": "Ctrl+Shift+V",
        "linux": "Ctrl+Shift+V"
      }
    }
  }
}