Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Monaco Markdown Editor For GitHubとは何ですか?
Monaco Markdown Editor For GitHubはHenning Dieterichsによって開発されたChromeの拡張機能で、その主な機能は「This extension brings the famous Monaco editor to GitHub!」です。
拡張機能のスクリーンショット
Monaco Markdown Editor For GitHub拡張機能のCRXファイルをダウンロード
Monaco Markdown Editor For GitHub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Monaco Markdown Editor For GitHub |
ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
公式URL | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
説明 | This extension brings the famous Monaco editor to GitHub! |
ファイルサイズ | 1.13 MB |
インストール数 | 1,744 |
現在のバージョン | 0.5.2 |
最終更新日 | 2022-11-09 |
公開日 | 2020-09-18 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Henning Dieterichs |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/hediet/chrome-ext-github-monaco |
ヘルプページのURL | https://github.com/hediet/chrome-ext-github-monaco/issues |
対応言語 | 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\/*" ] } |