multiPaste
Pastes content separated by tab or enter into multiple input text fields
什么是multiPaste?
multiPaste是由jrussi开发的Chrome扩展程序,该扩展的主要功能是“Pastes content separated by tab or enter into multiple input text fields”。
下载multiPaste扩展crx文件
下载multiPaste扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
官方URL | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
简介 | Pastes content separated by tab or enter into multiple input text fields |
文件大小 | 39.13 KB |
安装次数 | 36 |
当前版本 | 1.0 |
更新时间 | 2015-12-16 |
上架时间 | 2015-12-15 |
开发者 | jrussi |
付费类型 | free |
支持的语言 | 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 } |