Monaco Editor

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

Monaco Editor là gì?

Monaco Editor là một tiện ích mở rộng Chrome được phát triển bởi Daniel Ekeroth, và tính năng chính của nó là "Replaces the CodeMirror based editor in SiteVision with a Monaco based one.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Monaco Editor

Tải xuống các tệp mở rộng Monaco Editor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Monaco Editor Monaco Editor
ID npedoklkaclmikfmkpdlangkhljgmhni
URL Chính Thức https://chromewebstore.google.com/detail/monaco-editor/npedoklkaclmikfmkpdlangkhljgmhni
Mô tả Replaces the CodeMirror based editor in SiteVision with a Monaco based one.
Kích Thước Tệp 6.24 MB
Số Lần Cài Đặt 672
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2019-05-26
Ngày Phát Hành 2019-05-21
Nhà Phát Triển Daniel Ekeroth
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}