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…
Was ist LeetCode Search by Question ID?
LeetCode Search by Question ID ist eine Chrome-Erweiterung, die von pengyuc.swe entwickelt wurde, und ihr Hauptmerkmal ist "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…".
Erweiterungsscreenshots
LeetCode Search by Question ID-Erweiterungs-CRX-Datei herunterladen
Laden Sie LeetCode Search by Question ID-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | LeetCode Search by Question ID |
ID | ojjdknpfilphlnlnebagigcgejnkndlf |
Offizielle URL | https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf |
Beschreibung | 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… |
Dateigröße | 30.35 KB |
Installationsanzahl | 90 |
Aktuelle Version | 0.0.0.3 |
Letztes Update | 2024-02-10 |
Veröffentlichungsdatum | 2020-12-02 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | pengyuc.swe |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/walkccc/leetcode-search-by-question-id |
Unterstützte Sprachen | 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" } } |