Leetcode Difficulty Rating

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

What is Leetcode Difficulty Rating?

Leetcode Difficulty Rating is a Chrome extension developed by boenshao, and its main feature is "Replace Leetcode problem's difficulty with a more precise contest rating.".

Extension Screenshots

screenshot
screenshot

Download Leetcode Difficulty Rating Extension CRX File

Download Leetcode Difficulty Rating extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Leetcode Difficulty Rating Leetcode Difficulty Rating
ID hedijgjklbddpidomdhhngflipnibhca
Official URL https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca
Description Replace Leetcode problem's difficulty with a more precise contest rating.
File Size 12.9 KB
Installation Count 1,000
Current Version 1.1.6
Last Updated 2023-09-13
Publish Date 2023-01-25
Rating 4.11/5 Total 9 Ratings
Developer boenshao
Email [email protected]
Payment Type free
Extension Website https://github.com/boenshao/leetcode-difficulty-rating-extension
Privacy Policy Page URL https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy
Supported Languages 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"
    }
}