Leetmark
Converts a Leetcode problem page into Github Flavored Markdown
Leetmark là gì?
Leetmark là một tiện ích mở rộng Chrome được phát triển bởi CRIMX, và tính năng chính của nó là "Converts a Leetcode problem page into Github Flavored Markdown".
Ả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 Leetmark
Tải xuống các tệp mở rộng Leetmark 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
Share your ingenious Leetcode solutions like a BOSS. Leetmark generates a decent Github Flavored Markdown template from a Leetcode problem description page. Meta data is stored as Front Matter from which Github will generate a neat data table. Also useful for other blog frameworks. Additional JSON data export.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Leetmark |
ID | pbpcnaodgahdlijbhjeohbjoafbdafdp |
URL Chính Thức | https://chromewebstore.google.com/detail/leetmark/pbpcnaodgahdlijbhjeohbjoafbdafdp |
Mô tả | Converts a Leetcode problem page into Github Flavored Markdown |
Kích Thước Tệp | 22.43 KB |
Số Lần Cài Đặt | 49 |
Phiên Bản Hiện Tại | 0.4.0 |
Cập Nhật Lần Cuối | 2019-04-28 |
Ngày Phát Hành | 2019-04-28 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | CRIMX |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/crimx/crx-leetmark |
URL Trang Trợ Giúp | https://github.com/crimx/crx-leetmark/issues |
URL Trang Chính Sách Bảo Mật | https://www.crimx.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "manifest_version": 2, "minimum_chrome_version": "55", "name": "Leetmark", "short_name": "Leetmark", "description": "Converts a Leetcode problem page into Github Flavored Markdown", "version": "0.4.0", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "512": "leetmark.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*.leetcode.com\/problems\/*", "https:\/\/*.leetcode-cn.com\/problems\/*" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "512": "leetmark.png" }, "default_title": "Click to generate Markdown from a Leetcode problem page", "default_popup": "popup.html" }, "permissions": [ "https:\/\/*.leetcode.com\/*", "https:\/\/*.leetcode-cn.com\/*" ] } |