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開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件

下載LeetCode Search by Question ID擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}