Leetcode Enhancer

A browser extension to improve productivity on Leetcode.

O que é Leetcode Enhancer?

Leetcode Enhancer é uma extensão do Chrome desenvolvida por Lovesh Dongre, e sua principal característica é "A browser extension to improve productivity on Leetcode.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Leetcode Enhancer

Baixe arquivos de extensão Leetcode Enhancer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Leetcode Enhancer Leetcode Enhancer
ID gcmncppaaebldbkgkcbojghpmpjkdlmp
URL Oficial https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp
Descrição A browser extension to improve productivity on Leetcode.
Tamanho do Arquivo 47.28 KB
Contagem de Instalações 12,723
Versão Atual 1.62
Última Atualização 2024-02-20
Data de Publicação 2020-12-01
Classificação 3.97/5 Total de 32 Avaliações
Desenvolvedor Lovesh Dongre
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}