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
公式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
Eメール [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"
    }
}