Copy Markup Markdown
Copy seletion as Markup or Markdown
Copy Markup Markdown란 무엇입니까?
Copy Markup Markdown은(는) scootcho.yoo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy seletion as Markup or Markdown"입니다.
확장 프로그램 스크린샷
Copy Markup Markdown 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# Copy Markup Markdown This extension is made for cool people who like to take notes in markdown format. Having to copy content from the web then manually converting them to markdown format is a huge pain. Especially for formatting for code blocks and inline code. Select text / code blocks from a page then you can access the copy menu from either the browser extension button or the context menu from right clicking. The menu items will be dependent on if there were any selection on the page. Menu without Selection * Markdown Link `[Title](URL)` - copy page title with URL in Markdown link format. * Page as HTML - copy entire page html, sanitized, eliminated classes, ids, javascripts with HTML structure intact. * Page as Markdown - copy entire page in markdown format. Menu with selection Menu items without Selection, plus: * Selection as HTML - copy selection as html, sanitized, with HTML structure. * Selection as Markdown - copy selection as markdown. ===== SAMPLE COPY SELECTION AS MARKDOWN ====== An example of a closure ----------------------- The following code returns a reference to a function: ``` function sayHello2(name) { var text = 'Hello ' + name; // Local variable var say = function() { console.log(text); } return say; } var say2 = sayHello2('Bob'); say2(); // logs "Hello Bob" ``` ===== SAMPLE COPY SELECTION AS HTML ======An example of a closure
The following code returns a reference to a function:
function sayHello2(name) { var text = 'Hello ' + name; // Local variable var say = function() { console.log(text); } return say; } var say2 = sayHello2('Bob'); say2(); // logs "Hello Bob"
확장 프로그램 기본 정보
이름 | Copy Markup Markdown |
ID | kjolnndanembeldfjpchaipfopflpdph |
공식 URL | https://chromewebstore.google.com/detail/copy-markup-markdown/kjolnndanembeldfjpchaipfopflpdph |
설명 | Copy seletion as Markup or Markdown |
파일 크기 | 145 KB |
설치 횟수 | 1,000 |
현재 버전 | 0.10.0 |
최근 업데이트 | 2019-02-24 |
출시 날짜 | 2019-02-19 |
평점 | 4.60/5 총 5 개의 평점 |
개발자 | scootcho.yoo |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Markup Markdown", "version": "0.10.0", "description": "Copy seletion as Markup or Markdown", "manifest_version": 2, "permissions": [ "storage", "tabs", " |