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文件

下載Monaco Markdown Editor For GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}