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文件

下載PMCA擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}