Leetcode Difficulty Rating

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

Apa itu Leetcode Difficulty Rating?

Leetcode Difficulty Rating adalah ekstensi Chrome yang dikembangkan oleh boenshao, dan fitur utamanya adalah "Replace Leetcode problem's difficulty with a more precise contest rating.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Leetcode Difficulty Rating

Unduh file ekstensi Leetcode Difficulty Rating dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Leetcode Difficulty Rating Leetcode Difficulty Rating
ID hedijgjklbddpidomdhhngflipnibhca
URL Resmi https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca
Deskripsi Replace Leetcode problem's difficulty with a more precise contest rating.
Ukuran File 12.9 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.1.6
Terakhir Diperbarui 2023-09-13
Tanggal Publikasi 2023-01-25
Penilaian 4.11/5 Total 9 Penilaian
Pengembang boenshao
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/boenshao/leetcode-difficulty-rating-extension
URL Halaman Kebijakan Privasi https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy
Bahasa yang Didukung 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"
    }
}