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…
O que é LeetCode Search by Question ID?
LeetCode Search by Question ID é uma extensão do Chrome desenvolvida por pengyuc.swe, e sua principal característica é "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…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão LeetCode Search by Question ID
Baixe arquivos de extensão LeetCode Search by Question ID no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | LeetCode Search by Question ID |
ID | ojjdknpfilphlnlnebagigcgejnkndlf |
URL Oficial | https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf |
Descrição | 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… |
Tamanho do Arquivo | 30.35 KB |
Contagem de Instalações | 90 |
Versão Atual | 0.0.0.3 |
Última Atualização | 2024-02-10 |
Data de Publicação | 2020-12-02 |
Classificação | 4.00/5 Total de 1 Avaliações |
Desenvolvedor | pengyuc.swe |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/walkccc/leetcode-search-by-question-id |
Idiomas Suportados | 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" } } |