Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Cos'è Monaco Markdown Editor For GitHub?
Monaco Markdown Editor For GitHub è un'estensione di Chrome sviluppata da Henning Dieterichs, e la sua funzione principale è "This extension brings the famous Monaco editor to GitHub!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Monaco Markdown Editor For GitHub
Scarica i file di estensione Monaco Markdown Editor For GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Monaco Markdown Editor For GitHub |
ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
URL Ufficiale | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
Descrizione | This extension brings the famous Monaco editor to GitHub! |
Dimensione del File | 1.13 MB |
Conteggio Installazioni | 1,744 |
Versione Corrente | 0.5.2 |
Ultimo Aggiornamento | 2022-11-09 |
Data di Pubblicazione | 2020-09-18 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Henning Dieterichs |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hediet/chrome-ext-github-monaco |
URL della Pagina di Aiuto | https://github.com/hediet/chrome-ext-github-monaco/issues |
Lingue Supportate | 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\/*" ] } |