PMCA

PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve

PMCA là gì?

PMCA là một tiện ích mở rộng Chrome được phát triển bởi Haolin Zhong, và tính năng chính của nó là "PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PMCA

Tải xuống các tệp mở rộng PMCA 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

                        USAGE
PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve.

WHY USE PMCA
It takes practice to master algorithm problems. PMCA helps you to practice in the most efficient way.

GET STARTED
1. Install the PMCA extension in your web browser.
2. Solve and submit LeetCode problems. Upon a success submission, PMCA sets the next review time for the problem based on the Ebbinghaus forgetting curve.
3. Open PMCA to view problems that need to be reviewed now, problems scheduled for future review and mastered problems. You can use the switch in the popup page to switched between the LeetCode global site and the LeetCode CN site.
4. Enjoy coding!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PMCA PMCA
ID nojegmfgpgdicmogicikihalccihhkid
URL Chính Thức https://chromewebstore.google.com/detail/pmca/nojegmfgpgdicmogicikihalccihhkid
Mô tả PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve
Kích Thước Tệp 397 KB
Số Lần Cài Đặt 454
Phiên Bản Hiện Tại 0.9.4
Cập Nhật Lần Cuối 2023-11-11
Ngày Phát Hành 2023-09-30
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Haolin Zhong
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/HaolinZhong/PMCA
URL Trang Chính Sách Bảo Mật https://github.com/HaolinZhong/PMCA/blob/main/PRIVACY%20POLICY.md
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PMCA",
    "version": "0.9.4",
    "author": "Haolin Zhong",
    "description": "PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve",
    "homepage_url": "https:\/\/github.com\/HaolinZhong\/PMCA",
    "icons": {
        "128": "assets\/logo.png",
        "48": "assets\/logo.png",
        "16": "assets\/logo.png"
    },
    "action": {
        "default_icon": "assets\/logo.png",
        "default_popup": "popup.html"
    },
    "background": [],
    "permissions": [
        "https:\/\/leetcode.com\/*",
        "https:\/\/leetcode.cn\/*",
        "unlimitedStorage",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "scripts\/leetcode.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/leetcode.cn\/*"
            ],
            "js": [
                "scripts\/leetcodecn.js"
            ],
            "run_at": "document_idle"
        }
    ]
}