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…

ما هو LeetCode Search by Question ID؟

LeetCode Search by Question ID هو إضافة Chrome تم تطويرها بواسطة pengyuc.swe، والميزة الرئيسية لها هي "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…".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة LeetCode Search by Question ID

قم بتنزيل ملفات الامتداد LeetCode Search by Question ID بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم LeetCode Search by Question ID LeetCode Search by Question ID
ID ojjdknpfilphlnlnebagigcgejnkndlf
عنوان URL الرسمي https://chromewebstore.google.com/detail/leetcode-search-by-questi/ojjdknpfilphlnlnebagigcgejnkndlf
الوصف 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…
حجم الملف 30.35 KB
عدد التثبيتات 90
النسخة الحالية 0.0.0.3
آخر تحديث 2024-02-10
تاريخ النشر 2020-12-02
تقييم 4.00/5 مجموع تقييمات 1
المطور pengyuc.swe
نوع الدفع free
موقع الإضافة https://github.com/walkccc/leetcode-search-by-question-id
اللغات المدعومة 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"
    }
}