Leetcode Enhancer

A browser extension to improve productivity on Leetcode.

什麼是Leetcode Enhancer?

Leetcode Enhancer是由Lovesh Dongre開發的Chrome擴展程式,該擴展的主要功能是“A browser extension to improve productivity on Leetcode.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Leetcode Enhancer擴展crx文件

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

擴展使用說明

                        It is a light-weight browser extension which boosts your productivity by hiding unnecessary visual elements from the screen, enabling you to focus on what is important. You can change your preferences form the popup menu and find out what best suits your needs.

Its has the following features: **[Supports new UI]**
- Hide locked problems from the table
- Hide / Show any table column
- Highlight solved problems
- Hide difficulty count
- Hide solved problems

STOP getting intimidated by difficulty and FOCUS on problem-solving!                    

擴展基本資訊

名稱 Leetcode Enhancer Leetcode Enhancer
ID gcmncppaaebldbkgkcbojghpmpjkdlmp
官方網址 https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp
簡介 A browser extension to improve productivity on Leetcode.
檔案大小 47.28 KB
安裝次數 12,723
目前版本 1.62
更新時間 2024-02-20
上架時間 2020-12-01
評分 3.97/5 共 32 次評分
開發者 Lovesh Dongre
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Leetcode Enhancer",
    "version": "1.62",
    "author": "Lovesh Dongre",
    "description": "A browser extension to improve productivity on Leetcode.",
    "icons": {
        "48": "icons\/logo.png",
        "96": "icons\/logo-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "css": [
                "content-script.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "48": "icons\/logo.png",
            "96": "icons\/logo-96.png"
        },
        "default_title": "Leetcode Enhancer",
        "default_popup": "popup.html",
        "theme_icons": [
            {
                "light": "icons\/logo.png",
                "dark": "icons\/logo.png",
                "size": 48
            }
        ],
        "show_matches": [
            "https:\/\/leetcode.com\/*"
        ]
    },
    "permissions": [
        "storage"
    ]
}