Gist Markdown Preview

helps to preview the markdown while creating a markdown gist

Gist Markdown Preview란 무엇입니까?

Gist Markdown Preview은(는) https://blog.revathskumar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "helps to preview the markdown while creating a markdown gist"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gist Markdown Preview 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The option is visible only when you choose the filetype as markdown or your filename ends with .md

* updated for latest changes in gist.github.com design

CHANGES on 2017/04/12

* updates to latest github changes
* Removed the css from loading and breaking http://gist.github.com
* Fixes the issue with appearing multiple preview buttons on multiple markdown files

CHANGES on 2018/01/03

* updates to latest github changes

CHANGES on 2018/01/20

* Support for Github flavoured markdown                    

확장 프로그램 기본 정보

이름 Gist Markdown Preview Gist Markdown Preview
ID icgfmklfpokeihbnnjjdpnjndickgpkh
공식 URL https://chromewebstore.google.com/detail/gist-markdown-preview/icgfmklfpokeihbnnjjdpnjndickgpkh
설명 helps to preview the markdown while creating a markdown gist
파일 크기 139 KB
설치 횟수 445
현재 버전 2.0.3
최근 업데이트 2018-01-19
출시 날짜 2018-01-19
평점 4.00/5 총 6 개의 평점
개발자 https://blog.revathskumar.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/revathskumar/gist-markdown-preview
도움말 페이지 URL https://github.com/revathskumar/gist-markdown-preview/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gist Markdown Preview",
    "version": "2.0.3",
    "description": "helps to preview the markdown while creating a markdown gist",
    "manifest_version": 2,
    "icons": {
        "16": "img\/gist16.png",
        "48": "img\/gist48.png",
        "128": "img\/gist128.png"
    },
    "homepage_url": "https:\/\/github.com\/revathskumar\/gist-markdown-preview",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/",
                "https:\/\/gist.github.com\/*\/*\/edit"
            ],
            "js": [
                "js\/marked.js",
                "gist_markdown_preview.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "https:\/\/gist.github.com\/"
    ]
}