SpacedLeet
Spaced repetition for LeetCode
SpacedLeet là gì?
SpacedLeet là một tiện ích mở rộng Chrome được phát triển bởi https://spacedleet.com, và tính năng chính của nó là "Spaced repetition for LeetCode".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SpacedLeet
Tải xuống các tệp mở rộng SpacedLeet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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."
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SpacedLeet |
ID | dfhagjnahejiapmfkmmbkheikldoahch |
URL Chính Thức | https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch |
Mô tả | Spaced repetition for LeetCode |
Kích Thước Tệp | 46.51 KB |
Số Lần Cài Đặt | 421 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2021-02-22 |
Ngày Phát Hành | 2020-01-04 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://spacedleet.com |
[email protected] | |
Loại Thanh Toán | in_app |
Trang Web Mở Rộng | https://spacedleet.com |
URL Trang Trợ Giúp | https://github.com/ImedAdel/spacedleet-issues/issues |
URL Trang Chính Sách Bảo Mật | https://tabji.link/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |