LeetCode Search by Question ID
When you want to do a certain question with LeetCode, and you only know the question number, you must go to the search bar of…
What is LeetCode Search by Question ID?
LeetCode Search by Question ID is a Chrome extension developed by pengyuc.swe, and its main feature is "When you want to do a certain question with LeetCode, and you only know the question number, you must go to the search bar of…".
Extension Screenshots
Download LeetCode Search by Question ID Extension CRX File
Download LeetCode Search by Question ID 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
When you want to do a certain question with LeetCode, and you only know the question number, you must go to the search bar of LeetCode to type the question number, which is very inefficient. Using this plugin, you can easily search for a question by typing its number! 20240209 * Migrate to Manifest V3 * Save the `questionIdToSlugObj` in `chrome.storage.local` to save API calls
Extension Basic Information
Name | LeetCode Search by Question ID |
ID | ojjdknpfilphlnlnebagigcgejnkndlf |
Official URL | https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf |
Description | When you want to do a certain question with LeetCode, and you only know the question number, you must go to the search bar of… |
File Size | 30.35 KB |
Installation Count | 90 |
Current Version | 0.0.0.3 |
Last Updated | 2024-02-10 |
Publish Date | 2020-12-02 |
Rating | 4.00/5 Total 1 Ratings |
Developer | pengyuc.swe |
Payment Type | free |
Extension Website | https://github.com/walkccc/leetcode-search-by-question-id |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LeetCode Search by Question ID", "version": "0.0.0.3", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "host_permissions": [ "*:\/\/*\/*" ], "permissions": [ "storage" ], "action": { "default_icon": "icons\/48.png", "default_popup": "popup\/popup.html" }, "background": { "service_worker": "serviceWorker.js", "type": "module" } } |