markdown clipboard

copy content with md url format

markdown clipboard란 무엇입니까?

markdown clipboard은(는) leewei2020에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "copy content with md url format"입니다.

markdown clipboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easy Copy Text & Img from Browser Page.

Use

- select the content you need: text or img
- use the default short cut: Alt  + C,
- then you can paster the format markdown link to where you want

Of course,  after you select your content, u can click the extension icon for working too.                    

확장 프로그램 기본 정보

이름 markdown clipboard markdown clipboard
ID kiieboeeejffbjnfejfjphoigfdiiadh
공식 URL https://chrome.google.com/webstore/detail/markdown-clipboard/kiieboeeejffbjnfejfjphoigfdiiadh
설명 copy content with md url format
파일 크기 7.04 KB
설치 횟수 21
현재 버전 1.2.0
최근 업데이트 2018-06-15
출시 날짜 2018-06-15
평점 1.00/5 총 1 개의 평점
개발자 leewei2020
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/onvno/markdown-clipboard
개인정보 보호 정책 페이지 URL https://www.privacypolicies.com/live/3ad506ee-698f-47bf-a25f-08e519875264
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "markdown clipboard",
    "short_name": "md",
    "description": "copy content with md url format",
    "version": "1.2.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "markdown clipboard",
        "default_icon": "markdown.png"
    },
    "options_page": "options.html",
    "icons": {
        "128": "markdown.png",
        "16": "markdown.png",
        "48": "markdown.png"
    },
    "commands": {
        "base": {
            "description": "ClipBoard Copy",
            "suggested_key": {
                "default": "Alt+C",
                "mac": "Alt+C"
            }
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}