Monaco Markdown Editor For GitHub

This extension brings the famous Monaco editor to GitHub!

Co to jest Monaco Markdown Editor For GitHub?

Monaco Markdown Editor For GitHub to rozszerzenie Chrome opracowane przez Henning Dieterichs, a jego główną funkcją jest „This extension brings the famous Monaco editor to GitHub!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Monaco Markdown Editor For GitHub

Pobierz pliki rozszerzeń Monaco Markdown Editor For GitHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Monaco Markdown Editor For GitHub Monaco Markdown Editor For GitHub
ID mmpbdjdnmhgkpligeniippcgfmkgkpnf
Oficjalny URL https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf
Opis This extension brings the famous Monaco editor to GitHub!
Rozmiar pliku 1.13 MB
Liczba instalacji 1,744
Aktualna Wersja 0.5.2
Ostatnia Aktualizacja 2022-11-09
Data Publikacji 2020-09-18
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Henning Dieterichs
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hediet/chrome-ext-github-monaco
Adres URL Strony Pomocy https://github.com/hediet/chrome-ext-github-monaco/issues
Obsługiwane Języki 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\/*"
    ]
}