multiPaste

multiPaste

Pastes content separated by tab or enter into multiple input text fields

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "multiPaste",
  "version": "1.0",
  "description": "Pastes content separated by tab or enter into multiple input text fields",
  "background": {
    "matches": [
      "http://*/*",
      "https://*/*",
      "file://*/*"
    ],
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon-19.png",
    "default_title": "multiPaste!"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "http://*/*",
    "https://*/*",
    "clipboardRead",
    "clipboardWrite",
    "notifications",
    "storage"
  ],
  "manifest_version": 2
}