Leetcode Enhancer
A browser extension to improve productivity on Leetcode.
Qu'est-ce que Leetcode Enhancer ?
Leetcode Enhancer est une extension Chrome développée par Lovesh Dongre, et sa fonction principale est "A browser extension to improve productivity on Leetcode.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Leetcode Enhancer
Téléchargez les fichiers d'extension Leetcode Enhancer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
It is a light-weight browser extension which boosts your productivity by hiding unnecessary visual elements from the screen, enabling you to focus on what is important. You can change your preferences form the popup menu and find out what best suits your needs. Its has the following features: **[Supports new UI]** - Hide locked problems from the table - Hide / Show any table column - Highlight solved problems - Hide difficulty count - Hide solved problems STOP getting intimidated by difficulty and FOCUS on problem-solving!
Informations de Base sur l'Extension
Nom | Leetcode Enhancer |
ID | gcmncppaaebldbkgkcbojghpmpjkdlmp |
URL Officiel | https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp |
Description | A browser extension to improve productivity on Leetcode. |
Taille du Fichier | 47.28 KB |
Nombre d'Installations | 12,723 |
Version Actuelle | 1.62 |
Dernière Mise à Jour | 2024-02-20 |
Date de Publication | 2020-12-01 |
Évaluation | 3.97/5 Total 32 Évaluations |
Développeur | Lovesh Dongre |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Leetcode Enhancer", "version": "1.62", "author": "Lovesh Dongre", "description": "A browser extension to improve productivity on Leetcode.", "icons": { "48": "icons\/logo.png", "96": "icons\/logo-96.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "css": [ "content-script.css" ], "js": [ "content-script.js" ] } ], "background": { "service_worker": "service_worker.js" }, "action": { "browser_style": true, "default_icon": { "48": "icons\/logo.png", "96": "icons\/logo-96.png" }, "default_title": "Leetcode Enhancer", "default_popup": "popup.html", "theme_icons": [ { "light": "icons\/logo.png", "dark": "icons\/logo.png", "size": 48 } ], "show_matches": [ "https:\/\/leetcode.com\/*" ] }, "permissions": [ "storage" ] } |