Multicopy
Copy multiple texts and do multiple pastes from right click menu
Multicopy란 무엇입니까?
Multicopy은(는) trishul.goel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy multiple texts and do multiple pastes from right click menu"입니다.
확장 프로그램 스크린샷
Multicopy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A usability extension, which lets you to copy multiple texts and shows them in right click menu. Paste any of the text in any input field. To Copy: Right click on selected text -> Multicopy -> Copy this! To Paste: Right click on text area -> Multicopy -> Select the entry In some case for paste if clicking entry doesn't work (probably like Facebook), the text is copied to clipboard and you can press Ctrl(command) + V to paste the text in to the box.
확장 프로그램 기본 정보
이름 | Multicopy |
ID | bbihhbmcpmmbidebeomhomjelncfghcl |
공식 URL | https://chromewebstore.google.com/detail/multicopy/bbihhbmcpmmbidebeomhomjelncfghcl |
설명 | Copy multiple texts and do multiple pastes from right click menu |
파일 크기 | 20.84 KB |
설치 횟수 | 11,063 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-04-04 |
출시 날짜 | 2019-03-08 |
평점 | 3.75/5 총 20 개의 평점 |
개발자 | trishul.goel |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tsl143/jsDemos/tree/master/multicopy_webext |
도움말 페이지 URL | https://github.com/tsl143/jsDemos/tree/master/multicopy_webext |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Multicopy", "description": "Copy multiple texts and do multiple pastes from right click menu", "version": "1.0.0", "icons": { "32": "icons\/icon_32.png", "64": "icons\/icon_64.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "polyfill.js", "bg.js" ] }, "options_ui": { "page": "options.html" }, "permissions": [ "contextMenus", "activeTab", "notifications", "storage", "clipboardWrite" ], "web_accessible_resources": [ "icons\/icon_64.png" ] } |