Github Readme Markdown

So, Now don't worry about remembring markup, coz it's right there.

Github Readme Markdown란 무엇입니까?

Github Readme Markdown은(는) anantrungta1999에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "So, Now don't worry about remembring markup, coz it's right there."입니다.

확장 프로그램 스크린샷

screenshot

Github Readme Markdown 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        :smiley: It is a simple markdown for readme.md files at instant. This extension is specially for Github users to easily write their most important part - "The Documentation", very easily, without searching for markdown at other pages.
How to use?
1. Just Add it to your browser
2. That's it!!
Whenever editing a Readme.md file, this extra option will show automatically. [See picture]                    

확장 프로그램 기본 정보

이름 Github Readme Markdown Github Readme Markdown
ID paacehodnnofnmhogoclomamladkpabg
공식 URL https://chromewebstore.google.com/detail/github-readme-markdown/paacehodnnofnmhogoclomamladkpabg
설명 So, Now don't worry about remembring markup, coz it's right there.
파일 크기 14.59 KB
설치 횟수 320
현재 버전 1.5
최근 업데이트 2019-07-18
출시 날짜 2019-07-18
평점 4.38/5 총 13 개의 평점
개발자 anantrungta1999
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Anant016/github-readme-markdown-chrome-extension
도움말 페이지 URL https://github.com/Anant016/github-readme-markdown-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "https:\/\/github.com\/Anant016",
    "name": "Github Readme Markdown",
    "icons": {
        "16": "git16.png",
        "48": "git48.png",
        "128": "git128.png"
    },
    "version": "1.5",
    "description": "So, Now don't worry about remembring markup, coz it's right there.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/new*.md*",
                "https:\/\/github.com\/*\/edit*.md*",
                "https:\/\/github.com\/*\/new*.MD*",
                "https:\/\/github.com\/*\/edit*.MD*",
                "https:\/\/github.com\/*\/edit*readme",
                "https:\/\/github.com\/*\/new*readme"
            ],
            "js": [
                "showoption.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "git16.png",
        "default_popup": "popup.html"
    }
}