multiPaste
Pastes content separated by tab or enter into multiple input text fields
multiPaste là gì?
multiPaste là một tiện ích mở rộng Chrome được phát triển bởi jrussi, và tính năng chính của nó là "Pastes content separated by tab or enter into multiple input text fields".
Tải xuống tệp CRX của tiện ích mở rộng multiPaste
Tải xuống các tệp mở rộng multiPaste dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | multiPaste |
ID | denelmhlogdcnnldckfohhdnhaepmpno |
URL Chính Thức | https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno |
Mô tả | Pastes content separated by tab or enter into multiple input text fields |
Kích Thước Tệp | 39.13 KB |
Số Lần Cài Đặt | 36 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2015-12-16 |
Ngày Phát Hành | 2015-12-15 |
Nhà Phát Triển | jrussi |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |