NCU Helper

Add some features and change the design of NCU webpages in more modern style.

NCU Helper란 무엇입니까?

NCU Helper은(는) tsai1247에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add some features and change the design of NCU webpages in more modern style."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

NCU Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ★NCU Helper後繼有人啦~~近期將會開始維護★

針對中央大學服務提供外觀改變與些許的功能更新。

1. 使 LMS (Learning Management System) 改變為深色配色
2. 使 NCU Portal Login Page 改變為深色配色
3. 使查詢成績頁面 (https://cis.ncu.edu.tw/ScoreInquiries/portal.php) 改變為深色配色
4. 在查詢成績頁面 (https://cis.ncu.edu.tw/ScoreInquiries/portal.php) 提供計算 GPA 的功能
5. 使畢審系統查詢頁面改變為深色配色
6. 提供即時的宿舍網路上傳流量資訊

GPA 支援選項:

1. Overall GPA
2. Major GPA
3. Last 60 Credits GPA
4. Senior/Junior GPA

問題回報:
Email - [email protected]
GitHub - https://github.com/tsai1247/ncu-helper

原始開發者:
Email - [email protected]
GitHub - https://github.com/seanwu1105/ncu-helper
GitLab - https://gitlab.com/seanwu1105/ncu-helper                    

확장 프로그램 기본 정보

이름 NCU Helper NCU Helper
ID khhogbhcofdjjccjhgganhkhokibnfnb
공식 URL https://chromewebstore.google.com/detail/ncu-helper/khhogbhcofdjjccjhgganhkhokibnfnb
설명 Add some features and change the design of NCU webpages in more modern style.
파일 크기 1.56 MB
설치 횟수 1,000
현재 버전 3.0.5
최근 업데이트 2022-05-08
출시 날짜 2020-06-08
평점 5.00/5 총 6 개의 평점
개발자 tsai1247
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/seanwu1105/ncu-helper
도움말 페이지 URL https://github.com/tsai1247/ncu-helper/issues
지원되는 언어 zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NCU Helper",
    "homepage_url": "https:\/\/github.com\/seanwu1105\/ncu-helper",
    "description": "Add some features and change the design of NCU webpages in more modern style.",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "https:\/\/uncia.cc.ncu.edu.tw\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "ncu-helper",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false,
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lms.ncu.edu.tw\/*"
            ],
            "exclude_matches": [
                "https:\/\/lms.ncu.edu.tw\/rss\/*"
            ],
            "js": [
                "content_scripts\/lms.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/cis.ncu.edu.tw\/ScoreInquiries\/*"
            ],
            "exclude_matches": [
                "https:\/\/cis.ncu.edu.tw\/ScoreInquiries\/student_top.php*"
            ],
            "js": [
                "content_scripts\/score-inquiries.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/cis.ncu.edu.tw\/ScoreInquiries\/student_top.php*"
            ],
            "js": [
                "content_scripts\/score-inquiries-header.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/cis.ncu.edu.tw\/grad\/index.php*"
            ],
            "js": [
                "content_scripts\/graduate.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/portal.ncu.edu.tw\/",
                "https:\/\/portal.ncu.edu.tw\/chgpasswd*",
                "https:\/\/portal.ncu.edu.tw\/login*",
                "https:\/\/portal.ncu.edu.tw\/system\/147*",
                "https:\/\/portal.ncu.edu.tw\/system\/162*"
            ],
            "js": [
                "content_scripts\/portal.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "stylesheets\/*.css",
        "images\/*",
        "icons\/*"
    ],
    "version": "3.0.5"
}