LeetCode Python Assistant

Makes your Python development more efficient on LeetCode.

LeetCode Python Assistant란 무엇입니까?

LeetCode Python Assistant은(는) fwuensche에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes your Python development more efficient on LeetCode."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension provides the user with productivity tools, such as a button for YouTube solutions, automatically filtering Python discussions, sorting them by top rated, and more. 

That's pretty much it (so far), but contributions are more than welcome at https://github.com/fwuensche/leetcode-chrome-extension                    

확장 프로그램 기본 정보

이름 LeetCode Python Assistant LeetCode Python Assistant
ID ancmjhdhodjnghpopbhlihpggbgommgk
공식 URL https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk
설명 Makes your Python development more efficient on LeetCode.
파일 크기 213 KB
설치 횟수 213
현재 버전 0.1.0
최근 업데이트 2018-09-18
출시 날짜 2018-09-18
평점 5.00/5 총 1 개의 평점
개발자 fwuensche
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/fwuensche/leetcode-chrome-extension
도움말 페이지 URL http://github.com/fwuensche/leetcode-chrome-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode Python Assistant",
    "description": "Makes your Python development more efficient on LeetCode.",
    "version": "0.1.0",
    "browser_action": {
        "default_popup": "search.html",
        "default_icon": "img\/lc-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "js\/vendor\/jquery.js",
                "js\/problems.js"
            ]
        }
    ],
    "icons": {
        "144": "img\/icon_144.png"
    },
    "manifest_version": 2
}