Leetcode Eye Patch

Hides away Leetcode's Difficulty and Acceptance Rate columns.

Leetcode Eye Patch란 무엇입니까?

Leetcode Eye Patch은(는) annayen2008에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides away Leetcode's Difficulty and Acceptance Rate columns."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Update 12/27/2017: updated for new leetcode ui, screenshots to follow

Hides away Leetcode's Difficulty and Acceptance Rate information so that you won't get nervous when doing a hard problem or one with a very low acceptance rate. 

Also has the option of hiding away locked problems. (click the eye patch icon to see.)

New feature in v0.3: after you pass the problem, Acceptance Rate and Difficulty level will show right below the "Accepted" text to add extra satisfaction when finishing a problem and seeing it was actually hard. Suggested by Chryscord from reddit.

Github url: https://github.com/Nevvea7/eyepatch  Feel free to contribute in any way!                    

확장 프로그램 기본 정보

이름 Leetcode Eye Patch Leetcode Eye Patch
ID jmpkmcogglidbaggbahfidgcpjmeeomn
공식 URL https://chromewebstore.google.com/detail/leetcode-eye-patch/jmpkmcogglidbaggbahfidgcpjmeeomn
설명 Hides away Leetcode's Difficulty and Acceptance Rate columns.
파일 크기 40.19 KB
설치 횟수 188
현재 버전 0.10
최근 업데이트 2017-12-27
출시 날짜 2017-12-27
평점 4.50/5 총 8 개의 평점
개발자 annayen2008
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Eye Patch",
    "description": "Hides away Leetcode's Difficulty and Acceptance Rate columns.",
    "version": "0.10",
    "background": {
        "scripts": [
            "jquery.js",
            "jquery-watch.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Leetcode Eye Patch",
        "default_icon": "icon16.png",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/leetcode.com\/problemset\/*",
                "https:\/\/leetcode.com\/problemset\/*",
                "http:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "jquery.js",
                "jquery-watch.min.js",
                "background.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2
}