ALUB

백준, 프로그래머스에서 깃허브에 코드를 자동으로 커밋해보세요.

What is ALUB?

ALUB is a Chrome extension developed by alub, and its main feature is "백준, 프로그래머스에서 깃허브에 코드를 자동으로 커밋해보세요.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download ALUB Extension CRX File

Download ALUB extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Alub -  알고리즘 문제의 해결한 코드를 BOJ에서 버튼 클릭만으로 자신의 github repository에 업로드할 수 있습니다.

[github authenticate]
- 자신의 github 계정을 인증하고 로그인합니다.

[github repository 설정]
- 코드를 업로드할 자신의 github repository를 설정할 수 있습니다.

[commit 버튼]
- 자신의 github repository로 업로드할 수 있는 버튼을 제공합니다.                    

Extension Basic Information

Name ALUB ALUB
ID joknofdeknbhkjfpmhleippabhejlagn
Official URL https://chromewebstore.google.com/detail/alub/joknofdeknbhkjfpmhleippabhejlagn
Description 백준, 프로그래머스에서 깃허브에 코드를 자동으로 커밋해보세요.
File Size 1.1 MB
Installation Count 42
Current Version 1.0.5
Last Updated 2021-12-03
Publish Date 2021-11-15
Rating 5.00/5 Total 2 Ratings
Developer alub
Email [email protected]
Payment Type free
Extension Website https://alub.co.kr
Supported Languages 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"
            ]
        }
    ]
}