Hide LeetCode Difficulty

Hide the difficulty of problems on LeetCode

什麼是Hide LeetCode Difficulty?

Hide LeetCode Difficulty是由Amogh開發的Chrome擴展程式,該擴展的主要功能是“Hide the difficulty of problems on LeetCode”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Hide LeetCode Difficulty擴展crx文件

下載Hide LeetCode Difficulty擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This Chrome extension will hide the difficulty of a LeetCode problem when browsing for problems or on the problem page. When solving algorithm challenges, sometimes knowing how difficult a problem is by its label can impact performance. Knowing a problem is "Easy" and then struggling to solve it can reduce confidence; knowing a problem is "Hard" may lead to prematurely giving up. Hiding the difficulty makes problem solving similar to live interviews where candidates are given problems completely blind to how difficult a problem is rated.

Users can obfuscate Easy/Medium problems, Medium/Hard problems, or choose to hide all difficulties. Users can also choose to reveal the difficulty of a problem once it is solved and hide problems' acceptance rates. 

With this extension, you can solve problems blindly and practice your algorithm skills without mental blockers!

LeetCode's client is built with React. This extension uses DOM APIs on React's Virtual DOM which may mean the extension will not work perfectly at times. If the class names on the website change, that will also cause problems. Please raise any issues you encounter on GitHub.                    

擴展基本資訊

名稱 Hide LeetCode Difficulty Hide LeetCode Difficulty
ID ghgkbjcbpoclejjlpclndcgcamkgapln
官方網址 https://chromewebstore.google.com/detail/hide-leetcode-difficulty/ghgkbjcbpoclejjlpclndcgcamkgapln
簡介 Hide the difficulty of problems on LeetCode
檔案大小 21.21 KB
安裝次數 607
目前版本 2.0
更新時間 2020-08-06
上架時間 2020-05-13
評分 2.86/5 共 7 次評分
開發者 Amogh
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/akambale/hide-leetcode-difficulty
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide LeetCode Difficulty",
    "version": "2.0",
    "description": "Hide the difficulty of problems on LeetCode",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problemset\/all\/",
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "webRequest",
        "https:\/\/leetcode.com\/graphql",
        "https:\/\/leetcode.com\/problems\/*\/submit\/"
    ]
}