알바톡

알바천국과 알바몬에서 검색한 내용을 자동으로 정리해 카카오톡으로 내게 보내줍니다.

Was ist 알바톡?

알바톡 ist eine Chrome-Erweiterung, die von https://albatalk.github.io entwickelt wurde, und ihr Hauptmerkmal ist "알바천국과 알바몬에서 검색한 내용을 자동으로 정리해 카카오톡으로 내게 보내줍니다.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

알바톡-Erweiterungs-CRX-Datei herunterladen

Laden Sie 알바톡-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        “어떻게 하면 여러 사이트의 알바 정보를 한 눈에 볼 수 있을까?”
알바톡은 좀 더 편리한 구직을 꾀하는 질문에서 시작했습니다.
알바몬, 알바천국에서 알바를 찾을 땐 알바톡을 이용해보세요!
해당 알바의 제목, 근무 시간, 급여 등의 정보를 카카오톡 “나에게 보내기”로 전송합니다.
알바톡으로 나만의 알바 정보 리스트를 만들어보세요!
알바톡과 함께하면 여러 사이트를 옮겨 다니는 번거로움이 사라집니다.                    

Grundlegende Informationen zur Erweiterung

Name 알바톡 알바톡
ID mfbbbkcmgjogfeoapgheljkhobflkmde
Offizielle URL https://chromewebstore.google.com/detail/%EC%95%8C%EB%B0%94%ED%86%A1/mfbbbkcmgjogfeoapgheljkhobflkmde
Beschreibung 알바천국과 알바몬에서 검색한 내용을 자동으로 정리해 카카오톡으로 내게 보내줍니다.
Dateigröße 107 KB
Installationsanzahl 100
Aktuelle Version 0.0.1
Letztes Update 2019-01-28
Veröffentlichungsdatum 2019-01-27
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://albatalk.github.io
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\uc54c\ubc14\ud1a1",
    "version": "0.0.1",
    "description": "\uc54c\ubc14\ucc9c\uad6d\uacfc \uc54c\ubc14\ubaac\uc5d0\uc11c \uac80\uc0c9\ud55c \ub0b4\uc6a9\uc744 \uc790\ub3d9\uc73c\ub85c \uc815\ub9ac\ud574 \uce74\uce74\uc624\ud1a1\uc73c\ub85c \ub0b4\uac8c \ubcf4\ub0b4\uc90d\ub2c8\ub2e4.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/logo.png",
        "32": "images\/logo.png",
        "48": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.alba.co.kr\/job\/Detail.asp?*",
                "http:\/\/*.alba.co.kr\/job\/Detail.asp?*"
            ],
            "js": [
                "albaparse.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*.albamon.com\/recruit\/view\/gi?*",
                "https:\/\/*.albamon.com\/recruit\/view\/gi?*"
            ],
            "js": [
                "albamonparse.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}