ClassPlus

코스모스 플랫폼 학생을 위한 확장 프로그램

Wat is ClassPlus?

ClassPlus is een Chrome-extensie ontwikkeld door esllo, en de belangrijkste functie is "코스모스 플랫폼 학생을 위한 확장 프로그램".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ClassPlus

Download ClassPlus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        코스모스 플랫폼 학생을 위한 오픈소스 확장 프로그램

수정 (v0.4.0)
- 동영상 자유 이동 기능 추가 (HyungJu@github)
  https://github.com/esllo/ClassPlus/pull/4

수정 (v0.3.1)
- 설정 페이지가 잘리는 현상 수정

추가 (v0.3.0)
- 동영상 플레이어 여러창 실행
- 미제출 과제 수 영문판 파싱 추가

기능
- 메인 화면 출결 현황 모아보기
- 동영상 배속
- 과제 / 학습자료 / 동영상 등 칸마다 바로가기 버튼
- 미제출 과제 개수
- 미수강 동영상 개수

확인 된 학교
- 한림대 SMARTLEAD
- 울산대 ULMS
- 호서대 LEARN
- 전북대 (구)IEILMS
- 동양미래대 eClass                    

Basisinformatie over de Extensie

Naam ClassPlus ClassPlus
ID kmbnhpalnepccnjgaobhndnkimepecbl
Officiële URL https://chromewebstore.google.com/detail/classplus/kmbnhpalnepccnjgaobhndnkimepecbl
Beschrijving 코스모스 플랫폼 학생을 위한 확장 프로그램
Bestandsgrootte 23.47 KB
Aantal Installaties 2,579
Huidige Versie 0.4.0
Laatst Bijgewerkt 2022-04-12
Publicatiedatum 2021-04-02
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar esllo
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ESLLO/ClassPlus/releases/
Help Pagina-URL https://open.kakao.com/o/sWgca34c
Ondersteunde Talen ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ClassPlus",
    "description": "\ucf54\uc2a4\ubaa8\uc2a4 \ud50c\ub7ab\ud3fc \ud559\uc0dd\uc744 \uc704\ud55c \ud655\uc7a5 \ud504\ub85c\uadf8\ub7a8",
    "version": "0.4.0",
    "author": "esllo",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "\/images\/TR_GR.png"
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_page": "popup.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.ac.kr\/*",
                "https:\/\/*.ac.kr\/*"
            ],
            "js": [
                "classplus.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*.ac.kr\/mod\/vod\/viewer.php*",
                "https:\/\/*.ac.kr\/mod\/vod\/viewer.php*"
            ],
            "js": [
                "videoHelper.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*.ac.kr\/*",
                "https:\/\/*.ac.kr\/*"
            ],
            "js": [
                "tableHelper.js",
                "shortcutHelper.js",
                "reportHelper.js",
                "signupHelper.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/*.js",
        "css\/*.css",
        "images\/TR_GR.png"
    ]
}