Monaco Markdown Editor For GitHub

This extension brings the famous Monaco editor to GitHub!

Что такое Monaco Markdown Editor For GitHub?

Monaco Markdown Editor For GitHub - это расширение Chrome, разработанное Henning Dieterichs, и его основная функция - "This extension brings the famous Monaco editor to GitHub!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Monaco Markdown Editor For GitHub

Скачайте файлы расширений Monaco Markdown Editor For GitHub в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This open source extension replaces all github text areas for authoring markdown with a monaco editor.

Monaco features
* Syntax Highlighting of Markdown and Code Snippets
* Tab to indent and Shift+Tab to outdent entire selections
* Multi-Cursor Editing
* and much more

Please use GitHub to report bugs or feature requests!

You can press F11 inside the monaco editor to open a full screen view.                    

Основная информация о расширении

Название Monaco Markdown Editor For GitHub Monaco Markdown Editor For GitHub
ID mmpbdjdnmhgkpligeniippcgfmkgkpnf
Официальный URL https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf
Описание This extension brings the famous Monaco editor to GitHub!
Размер файла 1.13 MB
Количество установок 1,744
Текущая Версия 0.5.2
Последнее Обновление 2022-11-09
Дата публикации 2020-09-18
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Henning Dieterichs
Электронная почта chrome-extension-support@hediet.de
Тип оплаты free
Официальный сайт расширения https://github.com/hediet/chrome-ext-github-monaco
URL страницы помощи https://github.com/hediet/chrome-ext-github-monaco/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Monaco Markdown Editor For GitHub",
    "version": "0.5.2",
    "description": "This extension brings the famous Monaco editor to GitHub!",
    "icons": {
        "128": "logo.drawio.png"
    },
    "options_ui": {
        "page": ".\/dist\/options.html",
        "open_in_tab": true,
        "chrome_style": true,
        "browser_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "\/dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "web_accessible_resources": [
        "dist\/*"
    ]
}