GitCode

GitCode

GitCode란 무엇입니까?

GitCode은(는) andythsu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GitCode"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        GitCode is a chrome extension that pushes your code to GitHub when you pass all tests on a Leetcode problem. Instead of manually pushing code, GitCode automatically detects the submission success message in Leetcode and pushes the code in the editor to Github. Also, users can link an existing repo in Github to GitCode, or let GitCode create a new repo to store the submitted code.                    

확장 프로그램 기본 정보

이름 GitCode GitCode
ID elbmamfobiammaflpcffclcjilhddhkl
공식 URL https://chromewebstore.google.com/detail/gitcode/elbmamfobiammaflpcffclcjilhddhkl
설명 GitCode
파일 크기 650 KB
설치 횟수 39
현재 버전 3.0
최근 업데이트 2024-01-27
출시 날짜 2023-09-11
평점 5.00/5 총 2 개의 평점
개발자 andythsu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/andythsu/GitCode
개인정보 보호 정책 페이지 URL https://github.com/andythsu/GitCode/wiki/Privacy-Policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitCode",
    "description": "GitCode",
    "version": "3.0",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm1EAuVVG3EUnIujuTfPal6NDgOBQOW255XP\/kFpA7xatfMi+4JojkAzKm+MeROKC18OtuLfGaQHSCXQKSoDisu45SLdDYO\/yBTVT3rDqpUAJcbi20rAxaa4wKQAij0p0IXIivZfIs1RUgkWktZa6C0iG4DbtWeHWmQvDH3RmY8Jwub8BNBBKj\/iSlt6sLL47SB5osx2ik6mxOHE7qtA1\/QdHFR\/ZFl4BumvlVEbeGajWH8mQUgli7Rb1n33B8XPUJkhfwAyIBvJnpgC5gktL2JmitH+Bl6Didxo\/fureUuphOlUtDcTloeTI\/+GXmK3pwDagUGMQD1RBCOdPW+0VLQIDAQAB",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ],
            "css": [
                "css\/cute_alert.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "cute_alert\/success.svg"
            ],
            "matches": [
                "https:\/\/leetcode.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "identity",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ]
}