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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में LeetCode Search by Question ID एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}