Monaco Editor

Edit plain text content using Monaco editor.

什麼是Monaco Editor?

Monaco Editor是由jorenm開發的Chrome擴展程式,該擴展的主要功能是“Edit plain text content using Monaco editor.”。

擴展截圖

screenshot

下載Monaco Editor擴展crx文件

下載Monaco Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}