Monaco Editor

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

Wat is Monaco Editor?

Monaco Editor is een Chrome-extensie ontwikkeld door Daniel Ekeroth, en de belangrijkste functie is "Replaces the CodeMirror based editor in SiteVision with a Monaco based one.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Monaco Editor

Download Monaco Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Monaco Editor Monaco Editor
ID npedoklkaclmikfmkpdlangkhljgmhni
Officiële URL https://chromewebstore.google.com/detail/monaco-editor/npedoklkaclmikfmkpdlangkhljgmhni
Beschrijving Replaces the CodeMirror based editor in SiteVision with a Monaco based one.
Bestandsgrootte 6.24 MB
Aantal Installaties 672
Huidige Versie 0.1
Laatst Bijgewerkt 2019-05-26
Publicatiedatum 2019-05-21
Ontwikkelaar Daniel Ekeroth
Betalingswijze free
Ondersteunde Talen 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"
    ]
}