Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Monaco Markdown Editor For GitHubคืออะไร?
Monaco Markdown Editor For GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Henning Dieterichs และคุณลักษณะหลักของมันคือ "This extension brings the famous Monaco editor to GitHub!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Monaco Markdown Editor For GitHub
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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\/*" ] } |