GitCode

GitCode

什麼是GitCode?

GitCode是由andythsu開發的Chrome擴展程式,該擴展的主要功能是“GitCode”。

擴展截圖

screenshot
screenshot

下載GitCode擴展crx文件

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

擴展使用說明

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