Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
Copy HTML Link란 무엇입니까?
Copy HTML Link은(는) Paul Irish에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy link to the current page (with page title) to the clipboard."입니다.
Copy HTML Link 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Click once for HTML link and text fallback. Double-click to copy text as markdown. Also available via keyboard shortcut: * Alt+Shift+C on Windows / Linux * Ctrl+Shift+C on Mac (Protip: Tapping the C twice will "double-click") Source: https://github.com/paulirish/CopyLink-extension
확장 프로그램 기본 정보
이름 | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
공식 URL | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
설명 | Copy link to the current page (with page title) to the clipboard. |
파일 크기 | 17.37 KB |
설치 횟수 | 315 |
현재 버전 | 1.2 |
최근 업데이트 | 2016-11-05 |
출시 날짜 | 2016-11-05 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | Paul Irish |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/paulirish/CopyLink-extension |
도움말 페이지 URL | https://github.com/paulirish/CopyLink-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icon64.png", "default_title": "Copy HTML Link" }, "description": "Copy link to the current page (with page title) to the clipboard.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "64": "icon64.png" }, "name": "Copy HTML Link", "permissions": [ "activeTab", "clipboardWrite", "contextMenus" ], "version": "1.2", "commands": { "copy-html-link": { "suggested_key": { "default": "Alt+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Copy link of the page (with title)" } } } |