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…
Wat is LeetCode Search by Question ID?
LeetCode Search by Question ID is een Chrome-extensie ontwikkeld door pengyuc.swe, en de belangrijkste functie is "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…".
Extensie Screenshots
Download het CRX-bestand van de extensie LeetCode Search by Question ID
Download LeetCode Search by Question ID-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | LeetCode Search by Question ID |
ID | ojjdknpfilphlnlnebagigcgejnkndlf |
Officiële URL | https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf |
Beschrijving | 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… |
Bestandsgrootte | 30.35 KB |
Aantal Installaties | 90 |
Huidige Versie | 0.0.0.3 |
Laatst Bijgewerkt | 2024-02-10 |
Publicatiedatum | 2020-12-02 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | pengyuc.swe |
Betalingswijze | free |
Extensiewebsite | https://github.com/walkccc/leetcode-search-by-question-id |
Ondersteunde Talen | 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" } } |