Leetcode Filter
Filter Leetcode questions based on difficulty
Leetcode Filter là gì?
Leetcode Filter là một tiện ích mở rộng Chrome được phát triển bởi joyeshkakkar, và tính năng chính của nó là "Filter Leetcode questions based on difficulty".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Leetcode Filter
Tải xuống các tệp mở rộng Leetcode Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Leetcode Filter |
ID | ccggononkibenbebjpjgaholancgmkal |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal |
Mô tả | Filter Leetcode questions based on difficulty |
Kích Thước Tệp | 149 KB |
Số Lần Cài Đặt | 19 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2017-01-10 |
Ngày Phát Hành | 2017-01-09 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | joyeshkakkar |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |