PMCA

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

PMCA란 무엇입니까?

PMCA은(는) Haolin Zhong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

PMCA 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 PMCA PMCA
ID nojegmfgpgdicmogicikihalccihhkid
공식 URL https://chromewebstore.google.com/detail/pmca/nojegmfgpgdicmogicikihalccihhkid
설명 PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve
파일 크기 397 KB
설치 횟수 454
현재 버전 0.9.4
최근 업데이트 2023-11-11
출시 날짜 2023-09-30
평점 3.50/5 총 2 개의 평점
개발자 Haolin Zhong
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/HaolinZhong/PMCA
개인정보 보호 정책 페이지 URL https://github.com/HaolinZhong/PMCA/blob/main/PRIVACY%20POLICY.md
지원되는 언어 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"
        }
    ]
}