Monaco Editor

Edit plain text content using Monaco editor.

Vad är Monaco Editor?

Monaco Editor är en Chrome-tillägg utvecklad av jorenm, och dess huvudfunktion är "Edit plain text content using Monaco editor.".

Tilläggsskärmbilder

screenshot

Ladda ner Monaco Editor-förlängningens CRX-fil

Ladda ner Monaco Editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Monaco Editor Monaco Editor
ID bcapgnidkjmolmgddhckjbhkmneljeol
Officiell webbadress https://chromewebstore.google.com/detail/monaco-editor/bcapgnidkjmolmgddhckjbhkmneljeol
Beskrivning Edit plain text content using Monaco editor.
Filstorlek 2.29 MB
Antal Installationer 350
Aktuell Version 1.0
Senast Uppdaterad 2020-12-02
Publiceringsdatum 2020-12-02
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare jorenm
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}