PMCA

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

Hvad er PMCA?

PMCA er en Chrome-udvidelse udviklet af Haolin Zhong, og dens hovedfunktion er "PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve".

Udvidelsesskærmbilleder

screenshot
screenshot

Download PMCA-udvidelses-CRX-fil

Download PMCA-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn PMCA PMCA
ID nojegmfgpgdicmogicikihalccihhkid
Officiel URL https://chromewebstore.google.com/detail/pmca/nojegmfgpgdicmogicikihalccihhkid
Beskrivelse PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve
Filstørrelse 397 KB
Antal Installationer 454
Nuværende Version 0.9.4
Senest Opdateret 2023-11-11
Udgivelsesdato 2023-09-30
Bedømmelse 3.50/5 Samlet 2 Bedømmelser
Udvikler Haolin Zhong
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/HaolinZhong/PMCA
URL til Fortrolighedspolitik Side https://github.com/HaolinZhong/PMCA/blob/main/PRIVACY%20POLICY.md
Understøttede Sprog 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"
        }
    ]
}