ClassPlus
코스모스 플랫폼 학생을 위한 확장 프로그램
What is ClassPlus?
ClassPlus is a Chrome extension developed by esllo, and its main feature is "코스모스 플랫폼 학생을 위한 확장 프로그램".
Extension Screenshots
Download ClassPlus Extension CRX File
Download ClassPlus 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
코스모스 플랫폼 학생을 위한 오픈소스 확장 프로그램 수정 (v0.4.0) - 동영상 자유 이동 기능 추가 (HyungJu@github) https://github.com/esllo/ClassPlus/pull/4 수정 (v0.3.1) - 설정 페이지가 잘리는 현상 수정 추가 (v0.3.0) - 동영상 플레이어 여러창 실행 - 미제출 과제 수 영문판 파싱 추가 기능 - 메인 화면 출결 현황 모아보기 - 동영상 배속 - 과제 / 학습자료 / 동영상 등 칸마다 바로가기 버튼 - 미제출 과제 개수 - 미수강 동영상 개수 확인 된 학교 - 한림대 SMARTLEAD - 울산대 ULMS - 호서대 LEARN - 전북대 (구)IEILMS - 동양미래대 eClass
Extension Basic Information
Name | ClassPlus |
ID | kmbnhpalnepccnjgaobhndnkimepecbl |
Official URL | https://chromewebstore.google.com/detail/classplus/kmbnhpalnepccnjgaobhndnkimepecbl |
Description | 코스모스 플랫폼 학생을 위한 확장 프로그램 |
File Size | 23.47 KB |
Installation Count | 2,579 |
Current Version | 0.4.0 |
Last Updated | 2022-04-12 |
Publish Date | 2021-04-02 |
Rating | 5.00/5 Total 6 Ratings |
Developer | esllo |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ESLLO/ClassPlus/releases/ |
Help Page URL | https://open.kakao.com/o/sWgca34c |
Supported Languages | 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" ] } |