Leetcode Mask

Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor

O que é Leetcode Mask?

Leetcode Mask é uma extensão do Chrome desenvolvida por panhalkar.shreyas, e sua principal característica é "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Leetcode Mask

Baixe arquivos de extensão Leetcode Mask 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

                        How many times have you choked or given up on a Leetcode problem early only because it was tagged as "Hard"? This extension allows you to hide the difficulty level of problems so that you can attack every problem with the same vigor.                    

Informações Básicas da Extensão

Nome Leetcode Mask Leetcode Mask
ID nmgainefgbnakmdojhcnmceaogankngk
URL Oficial https://chromewebstore.google.com/detail/leetcode-mask/nmgainefgbnakmdojhcnmceaogankngk
Descrição Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor
Tamanho do Arquivo 78.31 KB
Contagem de Instalações 213
Versão Atual 0.3
Última Atualização 2019-04-15
Data de Publicação 2019-04-15
Classificação 3.25/5 Total de 12 Avaliações
Desenvolvedor panhalkar.shreyas
Tipo de Pagamento free
Site da Extensão https://thegreatheisenberg.github.io
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Mask",
    "description": "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor",
    "version": "0.3",
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/jquery-watch.min.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Leetcode Mask",
        "default_icon": "assets\/mask_16.png",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "assets\/mask_16.png",
        "48": "assets\/mask_48.png",
        "128": "assets\/mask_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/leetcode.com\/problemset\/*",
                "https:\/\/leetcode.com\/problemset\/*",
                "http:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/tag\/*",
                "http:\/\/leetcode.com\/tag\/*",
                "https:\/\/leetcode.com\/company\/*",
                "http:\/\/leetcode.com\/company\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jquery-watch.min.js",
                "js\/background.js"
            ]
        }
    ],
    "manifest_version": 2
}