Leetcode Enhancer
A browser extension to improve productivity on Leetcode.
Leetcode Enhancerคืออะไร?
Leetcode Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lovesh Dongre และคุณลักษณะหลักของมันคือ "A browser extension to improve productivity on Leetcode."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Leetcode Enhancer
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } |