Leetcode Mask

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

Qu'est-ce que Leetcode Mask ?

Leetcode Mask est une extension Chrome développée par panhalkar.shreyas, et sa fonction principale est "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Leetcode Mask

Téléchargez les fichiers d'extension Leetcode Mask au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Leetcode Mask Leetcode Mask
ID nmgainefgbnakmdojhcnmceaogankngk
URL Officiel https://chromewebstore.google.com/detail/leetcode-mask/nmgainefgbnakmdojhcnmceaogankngk
Description Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor
Taille du Fichier 78.31 KB
Nombre d'Installations 213
Version Actuelle 0.3
Dernière Mise à Jour 2019-04-15
Date de Publication 2019-04-15
Évaluation 3.25/5 Total 12 Évaluations
Développeur panhalkar.shreyas
Type de Paiement free
Site Web de l'Extension https://thegreatheisenberg.github.io
Langues Prises en Charge 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
}