Leetcode Enhancer

A browser extension to improve productivity on Leetcode.

Leetcode Enhancer là gì?

Leetcode Enhancer là một tiện ích mở rộng Chrome được phát triển bởi Lovesh Dongre, và tính năng chính của nó là "A browser extension to improve productivity on Leetcode.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Leetcode Enhancer

Tải xuống các tệp mở rộng Leetcode Enhancer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Leetcode Enhancer Leetcode Enhancer
ID gcmncppaaebldbkgkcbojghpmpjkdlmp
URL Chính Thức https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp
Mô tả A browser extension to improve productivity on Leetcode.
Kích Thước Tệp 47.28 KB
Số Lần Cài Đặt 12,723
Phiên Bản Hiện Tại 1.62
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2020-12-01
Đánh Giá 3.97/5 Tổng số 32 Đánh Giá
Nhà Phát Triển Lovesh Dongre
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}