Leetcode Difficulty Rating

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

Was ist Leetcode Difficulty Rating?

Leetcode Difficulty Rating ist eine Chrome-Erweiterung, die von boenshao entwickelt wurde, und ihr Hauptmerkmal ist "Replace Leetcode problem's difficulty with a more precise contest rating.".

Erweiterungsscreenshots

screenshot
screenshot

Leetcode Difficulty Rating-Erweiterungs-CRX-Datei herunterladen

Laden Sie Leetcode Difficulty Rating-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Leetcode Difficulty Rating Leetcode Difficulty Rating
ID hedijgjklbddpidomdhhngflipnibhca
Offizielle URL https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca
Beschreibung Replace Leetcode problem's difficulty with a more precise contest rating.
Dateigröße 12.9 KB
Installationsanzahl 1,000
Aktuelle Version 1.1.6
Letztes Update 2023-09-13
Veröffentlichungsdatum 2023-01-25
Bewertung 4.11/5 Insgesamt 9 Bewertungen
Entwickler boenshao
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/boenshao/leetcode-difficulty-rating-extension
URL der Datenschutzrichtlinien-Seite https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy
Unterstützte Sprachen 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"
    }
}