Monaco Editor

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

Что такое Monaco Editor?

Monaco Editor - это расширение Chrome, разработанное Daniel Ekeroth, и его основная функция - "Replaces the CodeMirror based editor in SiteVision with a Monaco based one.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Monaco Editor

Скачайте файлы расширений 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"
    ]
}