PMCA

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

PMCA क्या है?

PMCA Haolin Zhong द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "PMCA tracks your LeetCode progress and prompt you to review based on Ebbinghaus's Forgetting Curve"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PMCA एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}