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…

¿Qué es LeetCode Search by Question ID?

LeetCode Search by Question ID es una extensión de Chrome desarrollada por pengyuc.swe, y su función principal es "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 Pantalla de la Extensión

Descargar Archivo CRX de la Extensión LeetCode Search by Question ID

Descarga archivos de extensión LeetCode Search by Question ID en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre LeetCode Search by Question ID LeetCode Search by Question ID
ID ojjdknpfilphlnlnebagigcgejnkndlf
URL Oficial https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf
Descripción 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…
Tamaño del Archivo 30.35 KB
Cantidad de Instalaciones 90
Versión Actual 0.0.0.3
Última Actualización 2024-02-10
Fecha de Publicación 2020-12-02
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador pengyuc.swe
Tipo de Pago free
Sitio Web de la Extensión https://github.com/walkccc/leetcode-search-by-question-id
Idiomas Soportados 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"
    }
}