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
}