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 |
官方網址 | 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\/*" ] } |