Leetcode Enhancer

A browser extension to improve productivity on Leetcode.

Leetcode Enhancer क्या है?

Leetcode Enhancer Lovesh Dongre द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension to improve productivity on Leetcode."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Leetcode Enhancer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        It is a light-weight browser extension which boosts your productivity by hiding unnecessary visual elements from the screen, enabling you to focus on what is important. You can change your preferences form the popup menu and find out what best suits your needs.

Its has the following features: **[Supports new UI]**
- Hide locked problems from the table
- Hide / Show any table column
- Highlight solved problems
- Hide difficulty count
- Hide solved problems

STOP getting intimidated by difficulty and FOCUS on problem-solving!                    

एक्सटेंशन की मूल जानकारी

नाम Leetcode Enhancer Leetcode Enhancer
ID gcmncppaaebldbkgkcbojghpmpjkdlmp
आधिकारिक URL https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp
विवरण A browser extension to improve productivity on Leetcode.
फ़ाइल का आकार 47.28 KB
स्थापना संख्या 12,723
वर्तमान संस्करण 1.62
अंतिम अपडेट 2024-02-20
प्रकाशन तिथि 2020-12-01
रेटिंग 3.97/5 कुल 32 रेटिंग्स
डेवलपर Lovesh Dongre
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Leetcode Enhancer",
    "version": "1.62",
    "author": "Lovesh Dongre",
    "description": "A browser extension to improve productivity on Leetcode.",
    "icons": {
        "48": "icons\/logo.png",
        "96": "icons\/logo-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "css": [
                "content-script.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "48": "icons\/logo.png",
            "96": "icons\/logo-96.png"
        },
        "default_title": "Leetcode Enhancer",
        "default_popup": "popup.html",
        "theme_icons": [
            {
                "light": "icons\/logo.png",
                "dark": "icons\/logo.png",
                "size": 48
            }
        ],
        "show_matches": [
            "https:\/\/leetcode.com\/*"
        ]
    },
    "permissions": [
        "storage"
    ]
}