SpacedLeet
Spaced repetition for LeetCode
SpacedLeetคืออะไร?
SpacedLeet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://spacedleet.com และคุณลักษณะหลักของมันคือ "Spaced repetition for LeetCode"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SpacedLeet
ดาวน์โหลดไฟล์ส่วนขยาย SpacedLeet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
SpacedLeet is an extension that helps you organize your LeetCode problems' reviews using spaced repetition, a scientifically-proven method to efficiently retain information. Using spaced repetition, correctly answered LeetCode questions are later and less frequently for review, while incorrectly answered LeetCode questions are shown earlier and more often. According to Wikipedia, "Spaced repetition is an evidence-based learning technique that is usually performed with flashcards. Newly introduced and more difficult flashcards are shown more frequently while older and less difficult flashcards are shown less frequently in order to exploit the psychological spacing effect. The use of spaced repetition has been shown to increase rate of learning."
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SpacedLeet |
ID | dfhagjnahejiapmfkmmbkheikldoahch |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch |
คำอธิบาย | Spaced repetition for LeetCode |
ขนาดไฟล์ | 46.51 KB |
จำนวนการติดตั้ง | 421 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2021-02-22 |
วันที่เผยแพร่ | 2020-01-04 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://spacedleet.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
เว็บไซต์ส่วนขยาย | https://spacedleet.com |
URL หน้าช่วยเหลือ | https://github.com/ImedAdel/spacedleet-issues/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://tabji.link/privacy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Spaced repetition for LeetCode", "version": "2.0.2", "name": "SpacedLeet", "options_page": "options.html", "background": { "page": "background.html" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon-128.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "js": [ "content-script.bundle.js" ], "matches": [ "*:\/\/leetcode.com\/*" ] } ], "manifest_version": 2, "permissions": [ "tabs", "storage", "activeTab", "https:\/\/spacedleet.vercel.app\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |