Leetcode Mask

Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor

Leetcode Mask란 무엇입니까?

Leetcode Mask은(는) panhalkar.shreyas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        How many times have you choked or given up on a Leetcode problem early only because it was tagged as "Hard"? This extension allows you to hide the difficulty level of problems so that you can attack every problem with the same vigor.                    

확장 프로그램 기본 정보

이름 Leetcode Mask Leetcode Mask
ID nmgainefgbnakmdojhcnmceaogankngk
공식 URL https://chromewebstore.google.com/detail/leetcode-mask/nmgainefgbnakmdojhcnmceaogankngk
설명 Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor
파일 크기 78.31 KB
설치 횟수 213
현재 버전 0.3
최근 업데이트 2019-04-15
출시 날짜 2019-04-15
평점 3.25/5 총 12 개의 평점
개발자 panhalkar.shreyas
결제 유형 free
확장 프로그램 웹 사이트 https://thegreatheisenberg.github.io
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Mask",
    "description": "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor",
    "version": "0.3",
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/jquery-watch.min.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Leetcode Mask",
        "default_icon": "assets\/mask_16.png",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "assets\/mask_16.png",
        "48": "assets\/mask_48.png",
        "128": "assets\/mask_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/leetcode.com\/problemset\/*",
                "https:\/\/leetcode.com\/problemset\/*",
                "http:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/tag\/*",
                "http:\/\/leetcode.com\/tag\/*",
                "https:\/\/leetcode.com\/company\/*",
                "http:\/\/leetcode.com\/company\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jquery-watch.min.js",
                "js\/background.js"
            ]
        }
    ],
    "manifest_version": 2
}