Monaco Markdown Editor For GitHub

This extension brings the famous Monaco editor to GitHub!

Co je Monaco Markdown Editor For GitHub?

Monaco Markdown Editor For GitHub je rozšíření Chrome vyvinuté Henning Dieterichs, a jeho hlavní funkcí je „This extension brings the famous Monaco editor to GitHub!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Monaco Markdown Editor For GitHub

Stáhněte si soubory rozšíření Monaco Markdown Editor For GitHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Monaco Markdown Editor For GitHub Monaco Markdown Editor For GitHub
ID mmpbdjdnmhgkpligeniippcgfmkgkpnf
Oficiální URL https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf
Popis This extension brings the famous Monaco editor to GitHub!
Velikost souboru 1.13 MB
Počet instalací 1,744
Aktuální Verze 0.5.2
Poslední Aktualizace 2022-11-09
Datum Vydání 2020-09-18
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Henning Dieterichs
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/hediet/chrome-ext-github-monaco
URL Stránky Nápovědy https://github.com/hediet/chrome-ext-github-monaco/issues
Podporované Jazyky 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\/*"
    ]
}