Leetmark

Converts a Leetcode problem page into Github Flavored Markdown

Leetmark란 무엇입니까?

Leetmark은(는) CRIMX에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts a Leetcode problem page into Github Flavored Markdown"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Leetmark 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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\/*"
    ]
}