Leetcode Eye Patch

Hides away Leetcode's Difficulty and Acceptance Rate columns.

Leetcode Eye Patch क्या है?

Leetcode Eye Patch annayen2008 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides away Leetcode's Difficulty and Acceptance Rate columns."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Leetcode Eye Patch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}