Leetcode Difficulty Rating

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

Qu'est-ce que Leetcode Difficulty Rating ?

Leetcode Difficulty Rating est une extension Chrome développée par boenshao, et sa fonction principale est "Replace Leetcode problem's difficulty with a more precise contest rating.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Leetcode Difficulty Rating

Téléchargez les fichiers d'extension Leetcode Difficulty Rating au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Leetcode Difficulty Rating Leetcode Difficulty Rating
ID hedijgjklbddpidomdhhngflipnibhca
URL Officiel https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca
Description Replace Leetcode problem's difficulty with a more precise contest rating.
Taille du Fichier 12.9 KB
Nombre d'Installations 1,000
Version Actuelle 1.1.6
Dernière Mise à Jour 2023-09-13
Date de Publication 2023-01-25
Évaluation 4.11/5 Total 9 Évaluations
Développeur boenshao
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/boenshao/leetcode-difficulty-rating-extension
URL de la Page de Politique de Confidentialité https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy
Langues Prises en Charge 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"
    }
}