LeetCode Buddy

An extension that makes you more productive while you LeetCode.

LeetCode Buddy란 무엇입니까?

LeetCode Buddy은(는) https://tash-had.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that makes you more productive while you LeetCode."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        NEW: Added ability to add code blocks in notes.

Previous Updates:
You can now hit (Ctrl/Cmd) + S to save your notes.

Customize your LeetCode experience! This extension allows you to choose exactly what you want to see or hide when you're solving LeetCode problems. You can show/hide things like:
- Completion Status*
- Acceptance Rate
- Difficulty
- Locked Questions
- Announcements
- Problem Search Result Count
- Solved Problem Difficulty Counts

This extension also adds a Notes panel to the LeetCode problem page. So you can write notes as you write up a solution and browse all your notes at a later time!

* The completion status will also keep a local record of the questions you complete while the extension is installed. This way, if you've come back to LeetCode after a long time or want to start fresh, you can clear all the completion data and start fresh!                    

확장 프로그램 기본 정보

이름 LeetCode Buddy LeetCode Buddy
ID daeplkffffccbejlgacmhpebchpjbfjg
공식 URL https://chromewebstore.google.com/detail/leetcode-buddy/daeplkffffccbejlgacmhpebchpjbfjg
설명 An extension that makes you more productive while you LeetCode.
파일 크기 201 KB
설치 횟수 1,174
현재 버전 1.4
최근 업데이트 2020-11-03
출시 날짜 2020-06-11
평점 3.50/5 총 4 개의 평점
개발자 https://tash-had.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tash-had.github.io/leetcode-buddy/
도움말 페이지 URL https://tash-had.com/#contact
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode Buddy",
    "description": "An extension that makes you more productive while you LeetCode.",
    "version": "1.4",
    "author": "Tash-had Saqif",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "css": [
                "css\/leetcode.css"
            ],
            "js": [
                "js\/common.js",
                "js\/leetcode.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/leetcode.com\/*",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon.png"
    },
    "browser_action": {
        "default_title": "LeetCode Buddy",
        "default_icon": "img\/icon-disabled.png",
        "default_popup": "html\/config.html"
    },
    "web_accessible_resources": [
        "js\/libs\/jquery.1.8.3.min.js",
        "js\/libs\/notify.min.js",
        "js\/libs\/quill.min.js",
        "css\/libs\/quill.snow.min.css",
        "js\/notes.js"
    ]
}