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…
Hvad er LeetCode Search by Question ID?
LeetCode Search by Question ID er en Chrome-udvidelse udviklet af pengyuc.swe, og dens hovedfunktion er "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…".
Udvidelsesskærmbilleder
Download LeetCode Search by Question ID-udvidelses-CRX-fil
Download LeetCode Search by Question ID-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | LeetCode Search by Question ID |
ID | ojjdknpfilphlnlnebagigcgejnkndlf |
Officiel URL | https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf |
Beskrivelse | 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… |
Filstørrelse | 30.35 KB |
Antal Installationer | 90 |
Nuværende Version | 0.0.0.3 |
Senest Opdateret | 2024-02-10 |
Udgivelsesdato | 2020-12-02 |
Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
Udvikler | pengyuc.swe |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/walkccc/leetcode-search-by-question-id |
Understøttede Sprog | 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" } } |