select and convert to markdown

Copy select text and convert to Markdown code

select and convert to markdown란 무엇입니까?

select and convert to markdown은(는) TheMaple Network Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy select text and convert to Markdown code"입니다.

select and convert to markdown 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        作者:suziwen

主要功能有:

1. 选择文本后右键选择转换为markdown格式
* 直接转换成 markdown
* 转换成 markdown+ 文章来源地址
* 转换成 title + markdown + 文章来源地址
2. 在图片上右键选择时可直接将图片地址转换成markdown的图片链接格式
3. 在链接上右键选择时可将该链接转换成markdown的普通链接格式
4.在页面的空白处右键选择时可将该页地址转换成markdown的普通格式

目前存在的问题:

1. 不支持frame,iframe里的内容选择                    

확장 프로그램 기본 정보

이름 select and convert to markdown select and convert to markdown
ID igbjomagkpbgfofncgmkikopblijmbil
공식 URL https://chrome.google.com/webstore/detail/select-and-convert-to-mar/igbjomagkpbgfofncgmkikopblijmbil
설명 Copy select text and convert to Markdown code
파일 크기 92.53 KB
설치 횟수 64
현재 버전 0.1.0
최근 업데이트 2014-01-12
출시 날짜 2014-01-12
평점 3.00/5 총 3 개의 평점
개발자 TheMaple Network Inc.
결제 유형 free
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "select and convert to markdown",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Copy select text and convert to Markdown code",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "toolbar-copy-convert-markdown.png",
        "48": "toolbar-copy-convert-markdown.png",
        "128": "toolbar-copy-convert-markdown.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        }
    ]
}