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」です。
拡張機能のスクリーンショット
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 |
ID | ghgkbjcbpoclejjlpclndcgcamkgapln |
公式URL | 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 |
Eメール | [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\/" ] } |