Leetcode Difficulty Rating

Replace Leetcode problem's difficulty with a more precise contest rating.

Leetcode Difficulty Rating là gì?

Leetcode Difficulty Rating là một tiện ích mở rộng Chrome được phát triển bởi boenshao, và tính năng chính của nó là "Replace Leetcode problem's difficulty with a more precise contest rating.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Leetcode Difficulty Rating 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

                        Support both "leetcode.com" and "leetcode.cn".

The green/yellow/red text color is preserved, so you can still tell the official difficulty.

Problems in 1st-62nd weekly contests and problems that did not come from contests don’t have rating data and "N/A" is shown by default. You can change the setting in the extension popup.

For more details and source code, please visit:
- https://github.com/boenshao/leetcode-difficulty-rating-extension                    

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

Tên Leetcode Difficulty Rating Leetcode Difficulty Rating
ID hedijgjklbddpidomdhhngflipnibhca
URL Chính Thức https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca
Mô tả Replace Leetcode problem's difficulty with a more precise contest rating.
Kích Thước Tệp 12.9 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.1.6
Cập Nhật Lần Cuối 2023-09-13
Ngày Phát Hành 2023-01-25
Đánh Giá 4.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển boenshao
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/boenshao/leetcode-difficulty-rating-extension
URL Trang Chính Sách Bảo Mật https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Leetcode Difficulty Rating",
    "version": "1.1.6",
    "description": "Replace Leetcode problem's difficulty with a more precise contest rating.",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "src\/content.js"
            ],
            "matches": [
                "*:\/\/leetcode.com\/*",
                "*:\/\/leetcode.cn\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "action": {
        "default_popup": "src\/popup.html"
    }
}