UMD Schedule of Classes Professor Rating

This extension will add professor ratings to each section in the UMD Schedule of Classes.

UMD Schedule of Classes Professor Rating란 무엇입니까?

UMD Schedule of Classes Professor Rating은(는) a.mccourt60에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will add professor ratings to each section in the UMD Schedule of Classes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

UMD Schedule of Classes Professor Rating 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is a personal side project to practice JQuery and Javascript.  This extension adds ratings to the UMD Schedule of Classes on Testudo for each professor.  This will allow students to choose which sections they would like to register for without having to open new browser tabs to check professor ratings.                    

확장 프로그램 기본 정보

이름 UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
공식 URL https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
설명 This extension will add professor ratings to each section in the UMD Schedule of Classes.
파일 크기 1.16 MB
설치 횟수 41
현재 버전 1.1
최근 업데이트 2017-12-11
출시 날짜 2017-12-10
개발자 a.mccourt60
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://amccourt.github.io/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UMD Schedule of Classes Professor Rating",
    "description": "This extension will add professor ratings to each section in the UMD Schedule of Classes.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "img\/testudo.png",
        "default_title": "UMD Professor Rating"
    },
    "permissions": [
        "activeTab",
        "https:\/\/search.mtvnservices.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ntst.umd.edu\/soc\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content-script.js"
            ]
        }
    ]
}