Hide LeetCode Difficulty
Hide the difficulty of problems on LeetCode
Τι είναι το Hide LeetCode Difficulty;
Το Hide LeetCode Difficulty είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Amogh, και η κύρια λειτουργία του είναι "Hide the difficulty of problems on LeetCode".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hide LeetCode Difficulty
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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\/" ] } |