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
官方網址 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
}