Leetcode Filter
Filter Leetcode questions based on difficulty
What is Leetcode Filter?
Leetcode Filter is a Chrome extension developed by joyeshkakkar, and its main feature is "Filter Leetcode questions based on difficulty".
Extension Screenshots
Download Leetcode Filter Extension CRX File
Download Leetcode Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked.
Extension Basic Information
Name | Leetcode Filter |
ID | ccggononkibenbebjpjgaholancgmkal |
Official URL | https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal |
Description | Filter Leetcode questions based on difficulty |
File Size | 149 KB |
Installation Count | 19 |
Current Version | 0.1 |
Last Updated | 2017-01-10 |
Publish Date | 2017-01-09 |
Rating | 3.00/5 Total 2 Ratings |
Developer | joyeshkakkar |
Payment Type | free |
Supported Languages | 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 } |