Leetcode Filter

Filter Leetcode questions based on difficulty

Apa itu Leetcode Filter?

Leetcode Filter adalah ekstensi Chrome yang dikembangkan oleh joyeshkakkar, dan fitur utamanya adalah "Filter Leetcode questions based on difficulty".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Leetcode Filter

Unduh file ekstensi Leetcode Filter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Leetcode Filter Leetcode Filter
ID ccggononkibenbebjpjgaholancgmkal
URL Resmi https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal
Deskripsi Filter Leetcode questions based on difficulty
Ukuran File 149 KB
Jumlah Instalasi 19
Versi Saat Ini 0.1
Terakhir Diperbarui 2017-01-10
Tanggal Publikasi 2017-01-09
Penilaian 3.00/5 Total 2 Penilaian
Pengembang joyeshkakkar
Tipe Pembayaran free
Bahasa yang Didukung 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
}