Monaco Editor

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

Hvad er Monaco Editor?

Monaco Editor er en Chrome-udvidelse udviklet af Daniel Ekeroth, og dens hovedfunktion er "Replaces the CodeMirror based editor in SiteVision with a Monaco based one.".

Udvidelsesskærmbilleder

screenshot

Download Monaco Editor-udvidelses-CRX-fil

Download Monaco Editor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Monaco Editor Monaco Editor
ID npedoklkaclmikfmkpdlangkhljgmhni
Officiel URL https://chromewebstore.google.com/detail/monaco-editor/npedoklkaclmikfmkpdlangkhljgmhni
Beskrivelse Replaces the CodeMirror based editor in SiteVision with a Monaco based one.
Filstørrelse 6.24 MB
Antal Installationer 672
Nuværende Version 0.1
Senest Opdateret 2019-05-26
Udgivelsesdato 2019-05-21
Udvikler Daniel Ekeroth
Betalingsmetode free
Understøttede Sprog 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"
    ]
}