LeetSuite

Additional features for LeetCode

LeetSuite란 무엇입니까?

LeetSuite은(는) Song에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Additional features for LeetCode"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        LeetSuite is completely hands-off and stays out of your way!

LeetSuite works in the background so you can focus on LeetCode instead of going back and forth between answering questions and using the features of the extension.

It includes a minimal popup UI that shows you what question you should retry, based on a spaced repetition algorithm. It also includes a home page that allows you to view stats on your submissions along with all the questions in your queue.

Features
--------------
- completely hands-off, all the features work without you doing anything!
- records stats on your submissions and acceptance rate for each question
- reminds you to redo questions after a certain time interval, based on spaced repetition                    

확장 프로그램 기본 정보

이름 LeetSuite LeetSuite
ID fgpjfncacnkpldghchkgcpcgehbjbofe
공식 URL https://chrome.google.com/webstore/detail/leetsuite/fgpjfncacnkpldghchkgcpcgehbjbofe
설명 Additional features for LeetCode
파일 크기 58.94 KB
설치 횟수 279
현재 버전 1.0.0
최근 업데이트 2020-08-11
출시 날짜 2020-08-11
평점 3.67/5 총 3 개의 평점
개발자 Song
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetSuite",
    "version": "1.0.0",
    "description": "Additional features for LeetCode",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "webRequest",
        "*:\/\/*.leetcode.com\/*"
    ],
    "background": {
        "scripts": [
            ".\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/leetcode.com\/problems\/*"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/content\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/ui\/popup\/index.html",
        "default_icon": {
            "16": ".\/icons\/favicon-16x16.png",
            "32": ".\/icons\/favicon-32x32.png",
            "48": ".\/icons\/favicon-48x48.png",
            "128": ".\/icons\/favicon-128x128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/favicon-16x16.png",
        "32": ".\/icons\/favicon-32x32.png",
        "48": ".\/icons\/favicon-48x48.png",
        "128": ".\/icons\/favicon-128x128.png"
    }
}