Multi Input Paste

Multi Input Paste

Allows pasting into multiple inputs at once. To be used with appropriately formatted content. Most likely to be used to quickly integrate systems.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Multi Input Paste",
  "version": "0.4.0",
  "description": "Allows pasting into multiple inputs at once",
  "icons": {
    "48": "icons/Paste.svg",
    "96": "icons/Paste.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "clipboardRead"
  ],
  "page_action": {
    "default_icon": "icons/Paste.svg",
    "browser_style": true,
    "default_title": "Multi Paste Values"
  }
}