multiPaste
Pastes content separated by tab or enter into multiple input text fields
¿Qué es multiPaste?
multiPaste es una extensión de Chrome desarrollada por jrussi, y su función principal es "Pastes content separated by tab or enter into multiple input text fields".
Descargar Archivo CRX de la Extensión multiPaste
Descarga archivos de extensión multiPaste en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
URL Oficial | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Descripción | Pastes content separated by tab or enter into multiple input text fields |
Tamaño del Archivo | 39.13 KB |
Cantidad de Instalaciones | 36 |
Versión Actual | 1.0 |
Última Actualización | 2015-12-16 |
Fecha de Publicación | 2015-12-15 |
Desarrollador | jrussi |
Tipo de Pago | free |
Idiomas Soportados | 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 } |