Leetcode Enhancer

A browser extension to improve productivity on Leetcode.

Cos'è Leetcode Enhancer?

Leetcode Enhancer è un'estensione di Chrome sviluppata da Lovesh Dongre, e la sua funzione principale è "A browser extension to improve productivity on Leetcode.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Leetcode Enhancer

Scarica i file di estensione Leetcode Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Leetcode Enhancer Leetcode Enhancer
ID gcmncppaaebldbkgkcbojghpmpjkdlmp
URL Ufficiale https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp
Descrizione A browser extension to improve productivity on Leetcode.
Dimensione del File 47.28 KB
Conteggio Installazioni 12,723
Versione Corrente 1.62
Ultimo Aggiornamento 2024-02-20
Data di Pubblicazione 2020-12-01
Valutazione 3.97/5 Totale 32 Valutazioni
Sviluppatore Lovesh Dongre
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}