Monaco Editor

Edit plain text content using Monaco editor.

Hvad er Monaco Editor?

Monaco Editor er en Chrome-udvidelse udviklet af jorenm, og dens hovedfunktion er "Edit plain text content using Monaco editor.".

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

                        Provides an implementation of the Monaco editor as an overlay which can be used to edit editable nodes on a page.

Open editor using Right Click -> Edit with Monaco Editor or [CMD / CTRL] + Left Click on an editable element.

The original content element will be continuously updated with changes from the Monaco editor.

To close the editor either hit escape, or click the shadowbox around it. The Monaco editor content will be copied into the original content editor on close.                    

Grundlæggende oplysninger om udvidelsen

Navn Monaco Editor Monaco Editor
ID bcapgnidkjmolmgddhckjbhkmneljeol
Officiel URL https://chromewebstore.google.com/detail/monaco-editor/bcapgnidkjmolmgddhckjbhkmneljeol
Beskrivelse Edit plain text content using Monaco editor.
Filstørrelse 2.29 MB
Antal Installationer 350
Nuværende Version 1.0
Senest Opdateret 2020-12-02
Udgivelsesdato 2020-12-02
Bedømmelse 4.33/5 Samlet 3 Bedømmelser
Udvikler jorenm
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Monaco Editor",
    "version": "1.0",
    "description": "Edit plain text content using Monaco editor.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "stub.bundle.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "b3726f0165bf67ac68494ee7a1b9f6ce.ttf",
        "editor.bundle.js",
        "content.bundle.js"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "commands": {
        "launch-editor": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+E"
            },
            "description": "Edit focused area."
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}