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…
Co to jest LeetCode Search by Question ID?
LeetCode Search by Question ID to rozszerzenie Chrome opracowane przez pengyuc.swe, a jego główną funkcją jest „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…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LeetCode Search by Question ID
Pobierz pliki rozszerzeń LeetCode Search by Question ID w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | LeetCode Search by Question ID |
ID | ojjdknpfilphlnlnebagigcgejnkndlf |
Oficjalny URL | https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf |
Opis | 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… |
Rozmiar pliku | 30.35 KB |
Liczba instalacji | 90 |
Aktualna Wersja | 0.0.0.3 |
Ostatnia Aktualizacja | 2024-02-10 |
Data Publikacji | 2020-12-02 |
Ocena | 4.00/5 Łącznie 1 Oceny |
Deweloper | pengyuc.swe |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/walkccc/leetcode-search-by-question-id |
Obsługiwane Języki | 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" } } |