Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Qu'est-ce que Monaco Markdown Editor For GitHub ?
Monaco Markdown Editor For GitHub est une extension Chrome développée par Henning Dieterichs, et sa fonction principale est "This extension brings the famous Monaco editor to GitHub!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Monaco Markdown Editor For GitHub
Téléchargez les fichiers d'extension Monaco Markdown Editor For GitHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Monaco Markdown Editor For GitHub |
ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
URL Officiel | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
Description | This extension brings the famous Monaco editor to GitHub! |
Taille du Fichier | 1.13 MB |
Nombre d'Installations | 1,744 |
Version Actuelle | 0.5.2 |
Dernière Mise à Jour | 2022-11-09 |
Date de Publication | 2020-09-18 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Henning Dieterichs |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/hediet/chrome-ext-github-monaco |
URL de la Page d'Aide | https://github.com/hediet/chrome-ext-github-monaco/issues |
Langues Prises en Charge | 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\/*" ] } |