Leetcode Filter

Filter Leetcode questions based on difficulty

Qu'est-ce que Leetcode Filter ?

Leetcode Filter est une extension Chrome développée par joyeshkakkar, et sa fonction principale est "Filter Leetcode questions based on difficulty".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Leetcode Filter 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

                        Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked.                    

Informations de Base sur l'Extension

Nom Leetcode Filter Leetcode Filter
ID ccggononkibenbebjpjgaholancgmkal
URL Officiel https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal
Description Filter Leetcode questions based on difficulty
Taille du Fichier 149 KB
Nombre d'Installations 19
Version Actuelle 0.1
Dernière Mise à Jour 2017-01-10
Date de Publication 2017-01-09
Évaluation 3.00/5 Total 2 Évaluations
Développeur joyeshkakkar
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Filter",
    "description": "Filter Leetcode questions based on difficulty",
    "version": "0.1",
    "background": {
        "scripts": [
            "jquery.js",
            "jquery-watch.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Leetcode Filters",
        "default_icon": "icon16.png",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/leetcode.com\/*",
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "jquery.js",
                "jquery-watch.min.js",
                "background.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2
}