Leetmark
Converts a Leetcode problem page into Github Flavored Markdown
What is Leetmark?
Leetmark is a Chrome extension developed by CRIMX, and its main feature is "Converts a Leetcode problem page into Github Flavored Markdown".
Extension Screenshots
Download Leetmark Extension CRX File
Download Leetmark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Leetmark |
ID | pbpcnaodgahdlijbhjeohbjoafbdafdp |
Official URL | https://chromewebstore.google.com/detail/leetmark/pbpcnaodgahdlijbhjeohbjoafbdafdp |
Description | Converts a Leetcode problem page into Github Flavored Markdown |
File Size | 22.43 KB |
Installation Count | 49 |
Current Version | 0.4.0 |
Last Updated | 2019-04-28 |
Publish Date | 2019-04-28 |
Rating | 5.00/5 Total 1 Ratings |
Developer | CRIMX |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/crimx/crx-leetmark |
Help Page URL | https://github.com/crimx/crx-leetmark/issues |
Privacy Policy Page URL | https://www.crimx.com/privacy-policy |
Supported Languages | 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\/*" ] } |