multiPaste
Pastes content separated by tab or enter into multiple input text fields
What is multiPaste?
multiPaste is a Chrome extension developed by jrussi, and its main feature is "Pastes content separated by tab or enter into multiple input text fields".
Download multiPaste Extension CRX File
Download multiPaste extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Pastes content separated by tab or new line into multiple input text fields. To do that, just click the right mouse button into a text field and choose multiPaste.
Extension Basic Information
Name | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
Official URL | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Description | Pastes content separated by tab or enter into multiple input text fields |
File Size | 39.13 KB |
Installation Count | 36 |
Current Version | 1.0 |
Last Updated | 2015-12-16 |
Publish Date | 2015-12-15 |
Developer | jrussi |
Payment Type | free |
Supported Languages | en |
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 } |