Leetcode Filter

Filter Leetcode questions based on difficulty

什么是Leetcode Filter?

Leetcode Filter是由joyeshkakkar开发的Chrome扩展程序,该扩展的主要功能是“Filter Leetcode questions based on difficulty”。

扩展截图

screenshot

下载Leetcode Filter扩展crx文件

下载Leetcode Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Leetcode Filter Leetcode Filter
ID ccggononkibenbebjpjgaholancgmkal
官方URL https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal
简介 Filter Leetcode questions based on difficulty
文件大小 149 KB
安装次数 19
当前版本 0.1
更新时间 2017-01-10
上架时间 2017-01-09
评分 3.00/5 共2次评分
开发者 joyeshkakkar
付费类型 free
支持的语言 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
}