Monaco Editor

Replaces the CodeMirror based editor in SiteVision with a Monaco based one.

什么是Monaco Editor?

Monaco Editor是由Daniel Ekeroth开发的Chrome扩展程序,该扩展的主要功能是“Replaces the CodeMirror based editor in SiteVision with a Monaco based one.”。

扩展截图

screenshot

下载Monaco Editor扩展crx文件

下载Monaco Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension replaces the existing CodeMirror editor that is by default used within SiteVision with the new Monaco editor from Microsoft.                    

扩展基本信息

名称 Monaco Editor Monaco Editor
ID npedoklkaclmikfmkpdlangkhljgmhni
官方URL https://chromewebstore.google.com/detail/monaco-editor/npedoklkaclmikfmkpdlangkhljgmhni
简介 Replaces the CodeMirror based editor in SiteVision with a Monaco based one.
文件大小 6.24 MB
安装次数 672
当前版本 0.1
更新时间 2019-05-26
上架时间 2019-05-21
开发者 Daniel Ekeroth
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Monaco Editor",
    "version": "0.1",
    "description": "Replaces the CodeMirror based editor in SiteVision with a Monaco based one.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "popup": "settings.htm"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "loadEditor.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "require.js",
        "monacoRequire.js",
        "\/vs\/*",
        "main.js"
    ],
    "permissions": [
        "activeTab"
    ]
}