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