Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Monaco Markdown Editor For GitHub là gì?
Monaco Markdown Editor For GitHub là một tiện ích mở rộng Chrome được phát triển bởi Henning Dieterichs, và tính năng chính của nó là "This extension brings the famous Monaco editor to GitHub!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Monaco Markdown Editor For GitHub
Tải xuống các tệp mở rộng Monaco Markdown Editor For GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Monaco Markdown Editor For GitHub |
ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
URL Chính Thức | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
Mô tả | This extension brings the famous Monaco editor to GitHub! |
Kích Thước Tệp | 1.13 MB |
Số Lần Cài Đặt | 1,744 |
Phiên Bản Hiện Tại | 0.5.2 |
Cập Nhật Lần Cuối | 2022-11-09 |
Ngày Phát Hành | 2020-09-18 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Henning Dieterichs |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hediet/chrome-ext-github-monaco |
URL Trang Trợ Giúp | https://github.com/hediet/chrome-ext-github-monaco/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |