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…

Cos'è LeetCode Search by Question ID?

LeetCode Search by Question ID è un'estensione di Chrome sviluppata da pengyuc.swe, e la sua funzione principale è "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…".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione LeetCode Search by Question ID

Scarica i file di estensione LeetCode Search by Question ID in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome LeetCode Search by Question ID LeetCode Search by Question ID
ID ojjdknpfilphlnlnebagigcgejnkndlf
URL Ufficiale https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf
Descrizione 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…
Dimensione del File 30.35 KB
Conteggio Installazioni 90
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2024-02-10
Data di Pubblicazione 2020-12-02
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore pengyuc.swe
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/walkccc/leetcode-search-by-question-id
Lingue Supportate 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"
    }
}