Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Was ist Monaco Markdown Editor For GitHub?
Monaco Markdown Editor For GitHub ist eine Chrome-Erweiterung, die von Henning Dieterichs entwickelt wurde, und ihr Hauptmerkmal ist "This extension brings the famous Monaco editor to GitHub!".
Erweiterungsscreenshots
Monaco Markdown Editor For GitHub-Erweiterungs-CRX-Datei herunterladen
Laden Sie Monaco Markdown Editor For GitHub-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
| Offizielle URL | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
| Beschreibung | This extension brings the famous Monaco editor to GitHub! |
| Dateigröße | 1.13 MB |
| Installationsanzahl | 1,744 |
| Aktuelle Version | 0.5.2 |
| Letztes Update | 2022-11-09 |
| Veröffentlichungsdatum | 2020-09-18 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | Henning Dieterichs |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/hediet/chrome-ext-github-monaco |
| Hilfeseite URL | https://github.com/hediet/chrome-ext-github-monaco/issues |
| Unterstützte Sprachen | 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\/*"
]
} | |