iCampus Check

Show to-do list on SKKU iCampus

What is iCampus Check?

iCampus Check is a Chrome extension developed by https://ductility.github.io, and its main feature is "Show to-do list on SKKU iCampus".

Extension Screenshots

screenshot

Download iCampus Check Extension CRX File

Download iCampus Check 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

                        지금 차세대 아이캠퍼스는 들어야 할 강의와 해야할 과제를 확인하기가 불편합니다.
그래서 버튼 클릭으로 한눈에 할 일을 확인할 수 있는 크롬확장프로그램을 만들었습니다.

[사용법]
아캠체크를 설치하고 canvas.skku.edu에 로그인 한 뒤 확장프로그램 아이콘을 누르면 실행됩니다.
잠시 로딩을 기다리면 마감기한이 남은 강의와 과제를 남은시간이 적은 순으로 보여줍니다.

[주의사항]
※ <강의콘텐츠>에 속해있는 자료의 출결/제출 여부를 <출결/학습현황>에서 받아오는 것이기 때문에 <과제 및 평가>항목이 따로 있는 강의는 과제를 받아오지 못합니다. 그런 과목은 따로 확인해 주셔야 합니다.
※ 새 창에 어떤 과목의 <출결/학습현황>목록이 뜨는 것은 api 사용을 위한 토큰 쿠키를 발행하기 위한 과정입니다. 오류가 아닙니다.

[다음 버전에 추가할 것]
▶ 1일 미만 남으면 강조표시
▶ 과제 및 평가에서도 가져오기

[소스코드 Github]
https://github.com/ductility/iCampusCheck                    

Extension Basic Information

Name iCampus Check iCampus Check
ID hackfjdbiccajlckgjnkejepipjjbepm
Official URL https://chromewebstore.google.com/detail/icampus-check/hackfjdbiccajlckgjnkejepipjjbepm
Description Show to-do list on SKKU iCampus
File Size 45.3 KB
Installation Count 5,487
Current Version 0.1.6
Last Updated 2022-06-05
Publish Date 2020-05-12
Rating 4.38/5 Total 13 Ratings
Developer https://ductility.github.io
Email [email protected]
Payment Type free
Supported Languages ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "iCampus Check",
    "description": "Show to-do list on SKKU iCampus",
    "version": "0.1.6",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/canvas.skku.edu\/*"
            ],
            "js": [
                "content.js",
                "jquery-3.5.0.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/canvas.skku.edu\/; object-src 'self'",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ]
}