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'est-ce que LeetCode Search by Question ID ?

LeetCode Search by Question ID est une extension Chrome développée par pengyuc.swe, et sa fonction principale est "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…".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension LeetCode Search by Question ID

Téléchargez les fichiers d'extension LeetCode Search by Question ID au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom LeetCode Search by Question ID LeetCode Search by Question ID
ID ojjdknpfilphlnlnebagigcgejnkndlf
URL Officiel https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf
Description 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…
Taille du Fichier 30.35 KB
Nombre d'Installations 90
Version Actuelle 0.0.0.3
Dernière Mise à Jour 2024-02-10
Date de Publication 2020-12-02
Évaluation 4.00/5 Total 1 Évaluations
Développeur pengyuc.swe
Type de Paiement free
Site Web de l'Extension https://github.com/walkccc/leetcode-search-by-question-id
Langues Prises en Charge 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"
    }
}