Monaco Editor

Edit plain text content using Monaco editor.

Monaco Editor क्या है?

Monaco Editor jorenm द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Edit plain text content using Monaco editor."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Monaco Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Monaco Editor Monaco Editor
ID bcapgnidkjmolmgddhckjbhkmneljeol
आधिकारिक URL https://chromewebstore.google.com/detail/monaco-editor/bcapgnidkjmolmgddhckjbhkmneljeol
विवरण Edit plain text content using Monaco editor.
फ़ाइल का आकार 2.29 MB
स्थापना संख्या 350
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-12-02
प्रकाशन तिथि 2020-12-02
रेटिंग 4.33/5 कुल 3 रेटिंग्स
डेवलपर jorenm
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}