Leetmark
Converts a Leetcode problem page into Github Flavored Markdown
什么是Leetmark?
Leetmark是由CRIMX开发的Chrome扩展程序,该扩展的主要功能是“Converts a Leetcode problem page into Github Flavored Markdown”。
扩展截图
下载Leetmark扩展crx文件
下载Leetmark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Leetmark |
ID | pbpcnaodgahdlijbhjeohbjoafbdafdp |
官方URL | https://chromewebstore.google.com/detail/leetmark/pbpcnaodgahdlijbhjeohbjoafbdafdp |
简介 | Converts a Leetcode problem page into Github Flavored Markdown |
文件大小 | 22.43 KB |
安装次数 | 49 |
当前版本 | 0.4.0 |
更新时间 | 2019-04-28 |
上架时间 | 2019-04-28 |
评分 | 5.00/5 共1次评分 |
开发者 | CRIMX |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/crimx/crx-leetmark |
帮助页面URL | https://github.com/crimx/crx-leetmark/issues |
隐私政策页面URL | https://www.crimx.com/privacy-policy |
支持的语言 | 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\/*" ] } |