GitCode
GitCode
Cos'è GitCode?
GitCode è un'estensione di Chrome sviluppata da andythsu, e la sua funzione principale è "GitCode".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitCode
Scarica i file di estensione GitCode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GitCode |
ID | elbmamfobiammaflpcffclcjilhddhkl |
URL Ufficiale | https://chromewebstore.google.com/detail/gitcode/elbmamfobiammaflpcffclcjilhddhkl |
Descrizione | GitCode |
Dimensione del File | 650 KB |
Conteggio Installazioni | 39 |
Versione Corrente | 3.0 |
Ultimo Aggiornamento | 2024-01-27 |
Data di Pubblicazione | 2023-09-11 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | andythsu |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/andythsu/GitCode |
URL della Pagina della Politica sulla Privacy | https://github.com/andythsu/GitCode/wiki/Privacy-Policy |
Lingue Supportate | 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": [ " |