Monaco Editor

Replaces the CodeMirror based editor in SiteVision with a Monaco based one.

Monaco Editorとは何ですか?

Monaco EditorはDaniel Ekerothによって開発されたChromeの拡張機能で、その主な機能は「Replaces the CodeMirror based editor in SiteVision with a Monaco based one.」です。

拡張機能のスクリーンショット

screenshot

Monaco Editor拡張機能のCRXファイルをダウンロード

Monaco Editor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension replaces the existing CodeMirror editor that is by default used within SiteVision with the new Monaco editor from Microsoft.                    

拡張機能の基本情報

名前 Monaco Editor Monaco Editor
ID npedoklkaclmikfmkpdlangkhljgmhni
公式URL https://chromewebstore.google.com/detail/monaco-editor/npedoklkaclmikfmkpdlangkhljgmhni
説明 Replaces the CodeMirror based editor in SiteVision with a Monaco based one.
ファイルサイズ 6.24 MB
インストール数 672
現在のバージョン 0.1
最終更新日 2019-05-26
公開日 2019-05-21
開発者 Daniel Ekeroth
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Monaco Editor",
    "version": "0.1",
    "description": "Replaces the CodeMirror based editor in SiteVision with a Monaco based one.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "popup": "settings.htm"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "loadEditor.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "require.js",
        "monacoRequire.js",
        "\/vs\/*",
        "main.js"
    ],
    "permissions": [
        "activeTab"
    ]
}