Monaco Editor

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

Co to jest Monaco Editor?

Monaco Editor to rozszerzenie Chrome opracowane przez Daniel Ekeroth, a jego główną funkcją jest „Replaces the CodeMirror based editor in SiteVision with a Monaco based one.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Monaco Editor

Pobierz pliki rozszerzeń Monaco Editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Monaco Editor Monaco Editor
ID npedoklkaclmikfmkpdlangkhljgmhni
Oficjalny URL https://chromewebstore.google.com/detail/monaco-editor/npedoklkaclmikfmkpdlangkhljgmhni
Opis Replaces the CodeMirror based editor in SiteVision with a Monaco based one.
Rozmiar pliku 6.24 MB
Liczba instalacji 672
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2019-05-26
Data Publikacji 2019-05-21
Deweloper Daniel Ekeroth
Typ Płatności free
Obsługiwane Języki 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"
    ]
}