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