Monaco Editor

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

What is Monaco Editor?

Monaco Editor is a Chrome extension developed by Daniel Ekeroth, and its main feature is "Replaces the CodeMirror based editor in SiteVision with a Monaco based one.".

Extension Screenshots

screenshot

Download Monaco Editor Extension CRX File

Download Monaco Editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Monaco Editor Monaco Editor
ID npedoklkaclmikfmkpdlangkhljgmhni
Official URL https://chromewebstore.google.com/detail/monaco-editor/npedoklkaclmikfmkpdlangkhljgmhni
Description Replaces the CodeMirror based editor in SiteVision with a Monaco based one.
File Size 6.24 MB
Installation Count 672
Current Version 0.1
Last Updated 2019-05-26
Publish Date 2019-05-21
Developer Daniel Ekeroth
Payment Type free
Supported Languages 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"
    ]
}