Copy as Markdown
Browser extension to copy hyperlinks, images, and selected text as Markdown
Copy as Markdown란 무엇입니까?
Copy as Markdown은(는) Laxman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension to copy hyperlinks, images, and selected text as Markdown"입니다.
확장 프로그램 스크린샷
Copy as Markdown 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: The extension allows you to copy selected text on a page as Markdown with support for features including the following - Ability to copy links, images, and selected text as Markdown. - Linked images, will have options to individually select link or images. - Formatted text such as Italic, bold, strike-through, and inline code. - Unordered and ordered lists, with task lists support. - Tables, with respect to GFM. - Fenced code blocks, with language detection using info strings. Note: When copying links and images, Chrome doesn’t let you extract images alt text or anchors text content to be used in Markdown, instead the links themselves are used as link title. Firefox doesn’t have this limitation though. Permissions: The extension requires the following permission from you for working. 1. `contextMenus`: to show option when right-clicking. 2. `activeTab`: to be able to access content on page. 3. `clipboardWrite`: to be able to write data to clipboard (we still can’t read from your clipboard). The extension can only write to your clipboard and not read from it in any way.
확장 프로그램 기본 정보
이름 | Copy as Markdown |
ID | nlaionblcaejecbkcillglodmmfhjhfi |
공식 URL | https://chromewebstore.google.com/detail/copy-as-markdown/nlaionblcaejecbkcillglodmmfhjhfi |
설명 | Browser extension to copy hyperlinks, images, and selected text as Markdown |
파일 크기 | 32.45 KB |
설치 횟수 | 8,089 |
현재 버전 | 23.3.27 |
최근 업데이트 | 2023-03-28 |
출시 날짜 | 2020-07-02 |
평점 | 4.74/5 총 23 개의 평점 |
개발자 | Laxman |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/notlmn/copy-as-markdown |
도움말 페이지 URL | https://github.com/notlmn/copy-as-markdown/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy as Markdown", "version": "23.3.27", "description": "Browser extension to copy hyperlinks, images, and selected text as Markdown", "homepage_url": "https:\/\/github.com\/notlmn\/copy-as-markdown", "manifest_version": 2, "minimum_chrome_version": "74", "applications": { "gecko": { "id": "{6779b4de-d680-462a-8038-43079e365983}", "strict_min_version": "67.0" } }, "icons": { "128": "copy-as-markdown.png" }, "permissions": [ "contextMenus", "activeTab", "clipboardWrite" ], "browser_action": { "default_icon": "copy-as-markdown.png" }, "background": { "persistent": false, "scripts": [ "browser-polyfill.min.js", "copy-as-markdown.js" ] }, "commands": { "copy-selection-as-md": { "suggested_key": { "default": "Alt+X", "mac": "Alt+X" }, "description": "Copy selection as markdown" } } } |