iCampus Support Tools

iCampus Support Tools

What is iCampus Support Tools?

iCampus Support Tools is a Chrome extension developed by 김인엽, and its main feature is "iCampus Support Tools".

Extension Screenshots

screenshot

Download iCampus Support Tools Extension CRX File

Download iCampus Support Tools 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

                        아이캠퍼스의 강의 및 과제 정보를 쉽게 확인할 수 있습니다.
대시보드의 카드 사이즈 및 기타 UI를 작게 조절하여 공간 활용도를 높였습니다.

[0.2.0] 
- 초기 배포
[0.2.1]
- 로딩 애니메이션 추가
[0.2.2]
- 과제가 표시되지 않는 버그 수정
- 다른 사이트에서 실행 시 무한 로딩하는 버그 수정
[0.2.3]
- 남은 강의가 무한 생성되는 버그 수정
[0.2.4]
- 팝업창에서 강의를 클릭했을 때 모든 강의가 열리는 버그 수정
- 대시보드에서 강의를 클릭했을 때 현재 탭이 아니라 새 탭에서 열리게 수정
- 할일 리스트 UI 구현(기능 미구현)
[0.2.5]
- 좌측 메뉴를 선택적으로 가려서 넓게 사용할 수 있는 와이드 모드 추가
[0.2.6]
- 좌측 메뉴의 텍스트와 아이콘이 겹치는 버그 수정
[0.2.7]
- 개발자 개인정보 버그 수정                    

Extension Basic Information

Name iCampus Support Tools iCampus Support Tools
ID alfgojmjpodjklhcggdmehphbfmponfd
Official URL https://chromewebstore.google.com/detail/icampus-support-tools/alfgojmjpodjklhcggdmehphbfmponfd
Description iCampus Support Tools
File Size 23.75 KB
Installation Count 262
Current Version 0.2.7
Last Updated 2022-04-12
Publish Date 2022-03-17
Rating 5.00/5 Total 4 Ratings
Developer 김인엽
Email [email protected]
Payment Type free
Supported Languages ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "iCampus Support Tools",
    "description": "iCampus Support Tools",
    "version": "0.2.7",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/canvas.skku.edu\/*"
            ],
            "js": [
                "utils.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/canvas.skku.edu\/"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "logo.jpg"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/canvas.skku.edu\/'; object-src 'self'"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/canvas.skku.edu\/*"
    ]
}