Leetmark
Converts a Leetcode problem page into Github Flavored Markdown
Cos'è Leetmark?
Leetmark è un'estensione di Chrome sviluppata da CRIMX, e la sua funzione principale è "Converts a Leetcode problem page into Github Flavored Markdown".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Leetmark
Scarica i file di estensione Leetmark in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Leetmark |
ID | pbpcnaodgahdlijbhjeohbjoafbdafdp |
URL Ufficiale | https://chromewebstore.google.com/detail/leetmark/pbpcnaodgahdlijbhjeohbjoafbdafdp |
Descrizione | Converts a Leetcode problem page into Github Flavored Markdown |
Dimensione del File | 22.43 KB |
Conteggio Installazioni | 49 |
Versione Corrente | 0.4.0 |
Ultimo Aggiornamento | 2019-04-28 |
Data di Pubblicazione | 2019-04-28 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | CRIMX |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/crimx/crx-leetmark |
URL della Pagina di Aiuto | https://github.com/crimx/crx-leetmark/issues |
URL della Pagina della Politica sulla Privacy | https://www.crimx.com/privacy-policy |
Lingue Supportate | 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\/*" ] } |