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 |
Eメール | [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\/*" ] } |