Copy Text with URL
Copy current selected text and current URL
Copy Text with URL란 무엇입니까?
Copy Text with URL은(는) jojonki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy current selected text and current URL"입니다.
확장 프로그램 스크린샷
Copy Text with URL 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Copy selected text and current URL jointly! - Plain copy mode You can fire the action by either clicking the extension icon or pressing "Ctrl+Shift+C". The format is like below. selected_text http://curent_url - Markdown copy mode You can fire the action by pressing "Ctrl+Shift+M". The format is like below. [selected_text](http://current_url) You can also customize the shortcuts in your extension page. Perhaps, some shortcuts don't work in your environment. Please try the other ones. - chrome://extensions/shortcuts This extension is publicly available. https://github.com/jojonki/copy-text-with-url
확장 프로그램 기본 정보
이름 | Copy Text with URL |
ID | hbeifjjbjnpnpnffifmojplmlcjakhii |
공식 URL | https://chromewebstore.google.com/detail/copy-text-with-url/hbeifjjbjnpnpnffifmojplmlcjakhii |
설명 | Copy current selected text and current URL |
파일 크기 | 531 KB |
설치 횟수 | 61 |
현재 버전 | 2.0 |
최근 업데이트 | 2022-12-29 |
출시 날짜 | 2019-12-04 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | jojonki |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jojonki |
도움말 페이지 URL | https://github.com/jojonki/copy-text-with-url |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Text with URL", "version": "2.0", "description": "Copy current selected text and current URL", "permissions": [ "activeTab", "notifications", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "default_title": "Copy Text with URL" }, "commands": { "copy-text-with-url-as-plain": { "suggested_key": { "default": "Ctrl+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Copy text with URL as plain text", "global": false }, "copy-text-with-url-as-markdown": { "suggested_key": { "default": "Ctrl+Shift+M", "mac": "MacCtrl+Shift+M" }, "description": "Copy text with URL as markdown style", "global": false } }, "icons": { "16": "images\/icon_128.png", "32": "images\/icon_128.png", "48": "images\/icon_128.png", "128": "images\/icon_128.png" }, "manifest_version": 3 } |