ALUB
백준, 프로그래머스에서 깃허브에 코드를 자동으로 커밋해보세요.
Cos'è ALUB?
ALUB è un'estensione di Chrome sviluppata da alub, e la sua funzione principale è "백준, 프로그래머스에서 깃허브에 코드를 자동으로 커밋해보세요.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ALUB
Scarica i file di estensione ALUB 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
Alub - 알고리즘 문제의 해결한 코드를 BOJ에서 버튼 클릭만으로 자신의 github repository에 업로드할 수 있습니다. [github authenticate] - 자신의 github 계정을 인증하고 로그인합니다. [github repository 설정] - 코드를 업로드할 자신의 github repository를 설정할 수 있습니다. [commit 버튼] - 자신의 github repository로 업로드할 수 있는 버튼을 제공합니다.
Informazioni di Base sull'Estensione
Nome | ALUB |
ID | joknofdeknbhkjfpmhleippabhejlagn |
URL Ufficiale | https://chromewebstore.google.com/detail/alub/joknofdeknbhkjfpmhleippabhejlagn |
Descrizione | 백준, 프로그래머스에서 깃허브에 코드를 자동으로 커밋해보세요. |
Dimensione del File | 1.1 MB |
Conteggio Installazioni | 42 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2021-12-03 |
Data di Pubblicazione | 2021-11-15 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | alub |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://alub.co.kr |
Lingue Supportate | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ALUB", "description": "\ubc31\uc900, \ud504\ub85c\uadf8\ub798\uba38\uc2a4\uc5d0\uc11c \uae43\ud5c8\ube0c\uc5d0 \ucf54\ub4dc\ub97c \uc790\ub3d9\uc73c\ub85c \ucee4\ubc0b\ud574\ubcf4\uc138\uc694.", "version": "1.0.5", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Open the popup" }, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "permissions": [ "tabs", "storage", "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/*.acmicpc.net\/*", "https:\/\/programmers.co.kr\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/static\/js\/content.js" ] } ] } |