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 je LeetCode Search by Question ID?
LeetCode Search by Question ID je rozšíření Chrome vyvinuté pengyuc.swe, a jeho hlavní funkcí je „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…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření LeetCode Search by Question ID
Stáhněte si soubory rozšíření LeetCode Search by Question ID ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | LeetCode Search by Question ID |
ID | ojjdknpfilphlnlnebagigcgejnkndlf |
Oficiální URL | https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf |
Popis | 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… |
Velikost souboru | 30.35 KB |
Počet instalací | 90 |
Aktuální Verze | 0.0.0.3 |
Poslední Aktualizace | 2024-02-10 |
Datum Vydání | 2020-12-02 |
Hodnocení | 4.00/5 Celkem 1 Hodnocení |
Vývojář | pengyuc.swe |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/walkccc/leetcode-search-by-question-id |
Podporované Jazyky | 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" } } |