Monaco Markdown Editor For GitHub

This extension brings the famous Monaco editor to GitHub!

Monaco Markdown Editor For GitHub란 무엇입니까?

Monaco Markdown Editor For GitHub은(는) Henning Dieterichs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension brings the famous Monaco editor to GitHub!"입니다.

확장 프로그램 스크린샷

screenshot

Monaco Markdown Editor For GitHub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This open source extension replaces all github text areas for authoring markdown with a monaco editor.

Monaco features
* Syntax Highlighting of Markdown and Code Snippets
* Tab to indent and Shift+Tab to outdent entire selections
* Multi-Cursor Editing
* and much more

Please use GitHub to report bugs or feature requests!

You can press F11 inside the monaco editor to open a full screen view.                    

확장 프로그램 기본 정보

이름 Monaco Markdown Editor For GitHub Monaco Markdown Editor For GitHub
ID mmpbdjdnmhgkpligeniippcgfmkgkpnf
공식 URL https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf
설명 This extension brings the famous Monaco editor to GitHub!
파일 크기 1.13 MB
설치 횟수 1,744
현재 버전 0.5.2
최근 업데이트 2022-11-09
출시 날짜 2020-09-18
평점 5.00/5 총 4 개의 평점
개발자 Henning Dieterichs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hediet/chrome-ext-github-monaco
도움말 페이지 URL https://github.com/hediet/chrome-ext-github-monaco/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Monaco Markdown Editor For GitHub",
    "version": "0.5.2",
    "description": "This extension brings the famous Monaco editor to GitHub!",
    "icons": {
        "128": "logo.drawio.png"
    },
    "options_ui": {
        "page": ".\/dist\/options.html",
        "open_in_tab": true,
        "chrome_style": true,
        "browser_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "\/dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "web_accessible_resources": [
        "dist\/*"
    ]
}