Leetcode Enhancer
A browser extension to improve productivity on Leetcode.
Leetcode Enhancerとは何ですか?
Leetcode EnhancerはLovesh Dongreによって開発されたChromeの拡張機能で、その主な機能は「A browser extension to improve productivity on Leetcode.」です。
拡張機能のスクリーンショット
Leetcode Enhancer拡張機能のCRXファイルをダウンロード
Leetcode Enhancer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | Leetcode Enhancer |
ID | gcmncppaaebldbkgkcbojghpmpjkdlmp |
公式URL | https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp |
説明 | A browser extension to improve productivity on Leetcode. |
ファイルサイズ | 47.28 KB |
インストール数 | 12,723 |
現在のバージョン | 1.62 |
最終更新日 | 2024-02-20 |
公開日 | 2020-12-01 |
評価 | 3.97/5 合計 32 レビュー |
開発者 | Lovesh Dongre |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" ] } |