Copy As Markdown
Used to copy the element in current page as markdown format.
Copy As Markdown란 무엇입니까?
Copy As Markdown은(는) http://johnnyfee.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Used to copy the element in current page as markdown format."입니다.
확장 프로그램 스크린샷
Copy As Markdown 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Just select HTML in your page and then click the the 'M' icon in the extension toolbar, then the markdown content is in your clipboard. Cool? Also, you can use the shortcut of the extension, `Alt + C` for Windows or `Option + C` for Mac or define yourself. Enjoy it. History: 2016.06.21 fix a bug, change relative links to absolute links.
확장 프로그램 기본 정보
이름 | |
ID | dgoenpnkphkichnohepecnmpmihnabdg |
공식 URL | https://chrome.google.com/webstore/detail/copy-as-markdown/dgoenpnkphkichnohepecnmpmihnabdg |
설명 | Used to copy the element in current page as markdown format. |
파일 크기 | 57.18 KB |
설치 횟수 | 3,000 |
현재 버전 | 1.1.9 |
최근 업데이트 | 2016-06-21 |
출시 날짜 | 2016-06-21 |
평점 | 3.41/5 총 41 개의 평점 |
개발자 | http://johnnyfee.github.io |
결제 유형 | free |
지원되는 언어 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1.9", "manifest_version": 2, "default_locale": "en", "description": "__MSG_appDescription__", "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "commands": { "html2markdown": { "suggested_key": { "default": "Alt+C", "windows": "Alt+C", "mac": "Alt+C" }, "description": "Send 'html2markdown' command which is the same with clicking the browser_action icon." } }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "__MSG_appName__" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/vendor\/reMarked.js", "scripts\/contentscript.js", "bower_components\/rangy\/rangy-core.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "*:\/\/*\/*", "clipboardWrite", "clipboardRead" ] } |