TritonHelper

Multipurpose extension for UCSD students

TritonHelper란 무엇입니까?

TritonHelper은(는) TritonHelper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Multipurpose extension for UCSD students"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        TritonHelper is an extension to make life easier for UCSD students.

Class Schedule:
- view your class schedule with the click of a button
- syncs a copy of your schedule to your computer so you can quickly see it when you need to, even when offline!

Other features:
- easy access to useful information such as your UCSD mailing address, parking information and more

Go Tritons!

UPDATE 4/3/14 (v1.3.7.1): Autofill now works with new sign-on page                    

확장 프로그램 기본 정보

이름 TritonHelper TritonHelper
ID pjnboioiodjoemninfjeofoefcmalndk
공식 URL https://chromewebstore.google.com/detail/tritonhelper/pjnboioiodjoemninfjeofoefcmalndk
설명 Multipurpose extension for UCSD students
파일 크기 729 KB
설치 횟수 95
현재 버전 1.3.7.1
최근 업데이트 2016-02-23
출시 날짜 2016-02-22
평점 4.88/5 총 8 개의 평점
개발자 TritonHelper
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TritonHelper",
    "description": "Multipurpose extension for UCSD students",
    "version": "1.3.7.1",
    "browser_action": {
        "default_icon": "simplelogo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/a4.ucsd.edu\/tritON\/Authn\/*"
            ],
            "js": [
                "login.js"
            ]
        },
        {
            "matches": [
                "*:\/\/act.ucsd.edu\/myTritonlink20\/display.htm"
            ],
            "js": [
                "jquery-1.8.3.min.js",
                "schedule.js"
            ]
        },
        {
            "matches": [
                "*:\/\/act.ucsd.edu\/cgi-bin\/tritonlink.pl\/2\/students\/academic\/classes\/class_schedule.pl"
            ],
            "js": [
                "jquery-1.8.3.min.js",
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}