LeetCode Buddy
An extension that makes you more productive while you LeetCode.
LeetCode Buddyคืออะไร?
LeetCode Buddy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tash-had.com และคุณลักษณะหลักของมันคือ "An extension that makes you more productive while you LeetCode."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetCode Buddy
ดาวน์โหลดไฟล์ส่วนขยาย LeetCode Buddy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NEW: Added ability to add code blocks in notes. Previous Updates: You can now hit (Ctrl/Cmd) + S to save your notes. Customize your LeetCode experience! This extension allows you to choose exactly what you want to see or hide when you're solving LeetCode problems. You can show/hide things like: - Completion Status* - Acceptance Rate - Difficulty - Locked Questions - Announcements - Problem Search Result Count - Solved Problem Difficulty Counts This extension also adds a Notes panel to the LeetCode problem page. So you can write notes as you write up a solution and browse all your notes at a later time! * The completion status will also keep a local record of the questions you complete while the extension is installed. This way, if you've come back to LeetCode after a long time or want to start fresh, you can clear all the completion data and start fresh!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | LeetCode Buddy |
ID | daeplkffffccbejlgacmhpebchpjbfjg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/leetcode-buddy/daeplkffffccbejlgacmhpebchpjbfjg |
คำอธิบาย | An extension that makes you more productive while you LeetCode. |
ขนาดไฟล์ | 201 KB |
จำนวนการติดตั้ง | 1,174 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2020-11-03 |
วันที่เผยแพร่ | 2020-06-11 |
คะแนน | 3.50/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://tash-had.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://tash-had.github.io/leetcode-buddy/ |
URL หน้าช่วยเหลือ | https://tash-had.com/#contact |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetCode Buddy", "description": "An extension that makes you more productive while you LeetCode.", "version": "1.4", "author": "Tash-had Saqif", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "css": [ "css\/leetcode.css" ], "js": [ "js\/common.js", "js\/leetcode.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "tabs", "https:\/\/leetcode.com\/*", "activeTab", "storage" ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon.png" }, "browser_action": { "default_title": "LeetCode Buddy", "default_icon": "img\/icon-disabled.png", "default_popup": "html\/config.html" }, "web_accessible_resources": [ "js\/libs\/jquery.1.8.3.min.js", "js\/libs\/notify.min.js", "js\/libs\/quill.min.js", "css\/libs\/quill.snow.min.css", "js\/notes.js" ] } |