Paste as Markdown

Paste as Markdown.

Paste as Markdown란 무엇입니까?

Paste as Markdown은(는) Medusis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Paste as Markdown."입니다.

확장 프로그램 스크린샷

screenshot

Paste as Markdown 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Paste the content of the clipboard as Markdown, in any web form. The content of the clipboard can come from anywhere (a text editor, a graphics program, another web page, etc.) and be in rich text format with italics, bold, lists, etc., and it will be converted to Markdown upon pasting.

The clipboard content is unchanged, the conversion happens when pasting.

Everything happens within the browser, nothing is sent outside of the browser.

New (starting with 5.7.2): can now interpret inline styles bold & italic (for Google Docs, etc.)                    

확장 프로그램 기본 정보

이름 Paste as Markdown Paste as Markdown
ID lmelpnmpkekjahgdihfajfebaddffokl
공식 URL https://chromewebstore.google.com/detail/paste-as-markdown/lmelpnmpkekjahgdihfajfebaddffokl
설명 Paste as Markdown.
파일 크기 67.66 KB
설치 횟수 2,514
현재 버전 0.5.7.2
최근 업데이트 2020-02-19
출시 날짜 2020-02-19
평점 4.25/5 총 8 개의 평점
개발자 Medusis
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://markitdown.medusis.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste as Markdown",
    "short_name": "Paste-Mkdown",
    "version": "0.5.7.2",
    "description": "Paste as Markdown.",
    "homepage_url": "http:\/\/markitdown.medusis.com",
    "permissions": [
        "activeTab",
        "clipboardRead",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "lib\/lodash.min.js",
            "js\/mkutils.js",
            "lib\/turndown.js",
            "lib\/turndown-plugin-gfm.js",
            "js\/html2mk.js",
            "js\/browser\/background.js"
        ]
    },
    "icons": {
        "16": "icons\/paste-mk_16.png",
        "19": "icons\/paste-mk_19.png",
        "38": "icons\/paste-mk_38.png",
        "48": "icons\/paste-mk_48.png",
        "128": "icons\/paste-mk_128.png"
    },
    "commands": {
        "paste-mk": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Paste as Markdown"
        }
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/paste-mk_19.png"
        },
        "default_title": "MarkItDown - Click for help",
        "default_popup": "popup_help.html"
    }
}