Leetcode Difficulty Rating

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

Leetcode Difficulty Rating란 무엇입니까?

Leetcode Difficulty Rating은(는) boenshao에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace Leetcode problem's difficulty with a more precise contest rating."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Leetcode Difficulty Rating 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Leetcode Difficulty Rating Leetcode Difficulty Rating
ID hedijgjklbddpidomdhhngflipnibhca
공식 URL https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca
설명 Replace Leetcode problem's difficulty with a more precise contest rating.
파일 크기 12.9 KB
설치 횟수 1,000
현재 버전 1.1.6
최근 업데이트 2023-09-13
출시 날짜 2023-01-25
평점 4.11/5 총 9 개의 평점
개발자 boenshao
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/boenshao/leetcode-difficulty-rating-extension
개인정보 보호 정책 페이지 URL https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy
지원되는 언어 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"
    }
}