Leetmark

Converts a Leetcode problem page into Github Flavored Markdown

Vad är Leetmark?

Leetmark är en Chrome-tillägg utvecklad av CRIMX, och dess huvudfunktion är "Converts a Leetcode problem page into Github Flavored Markdown".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Leetmark-förlängningens CRX-fil

Ladda ner Leetmark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Leetmark Leetmark
ID pbpcnaodgahdlijbhjeohbjoafbdafdp
Officiell webbadress https://chromewebstore.google.com/detail/leetmark/pbpcnaodgahdlijbhjeohbjoafbdafdp
Beskrivning Converts a Leetcode problem page into Github Flavored Markdown
Filstorlek 22.43 KB
Antal Installationer 49
Aktuell Version 0.4.0
Senast Uppdaterad 2019-04-28
Publiceringsdatum 2019-04-28
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare CRIMX
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/crimx/crx-leetmark
Hjälpsida URL https://github.com/crimx/crx-leetmark/issues
URL till Sekretesspolicy Sidan https://www.crimx.com/privacy-policy
Stödda Språk 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\/*"
    ]
}