Markdown Link Generator
Generates inline Markdown link from the selected text and current url of the page
Markdown Link Generator란 무엇입니까?
Markdown Link Generator은(는) Unmesh Gundecha에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates inline Markdown link from the selected text and current url of the page"입니다.
확장 프로그램 스크린샷
Markdown Link Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Markdown Link Generator extension helps you create an inline text link used in a markdown document format (https://daringfireball.net/projects/markdown/syntax#link). To create an inline text links in a document, we use a set of regular parentheses immediately after the link text’s closing square bracket. Inside the parentheses, we put the URL where we want the link to point. These steps to create links require few copy and paste actions and switching between windows or tabs. This extension will help you automatically generate an inline text link by selecting the desired text and a single click with minimal context switching. How to use it? 1. Select the desired text on the page 2. Right-click and select the "Copy Markdown Link" option from the context menu 3. Paste the generated link in your markdown document
확장 프로그램 기본 정보
이름 | |
ID | glnecdafikgonniihbdjneaikhcgcbhb |
공식 URL | https://chrome.google.com/webstore/detail/markdown-link-generator/glnecdafikgonniihbdjneaikhcgcbhb |
설명 | Generates inline Markdown link from the selected text and current url of the page |
파일 크기 | 10.13 KB |
설치 횟수 | 63 |
현재 버전 | 0.0.0.1 |
최근 업데이트 | 2021-01-11 |
출시 날짜 | 2021-01-11 |
개발자 | Unmesh Gundecha |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Markdown Link Generator", "description": "Generates inline Markdown link from the selected text and current url of the page", "version": "0.0.0.1", "author": "Unmesh Gundecha", "manifest_version": 2, "permissions": [ "contextMenus", "tabs", "clipboardWrite" ], "background": { "scripts": [ "main.js" ] }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } } |