RateMyGWU

Displays Rate My Professors information directly on the GW schedule of classes

RateMyGWU란 무엇입니까?

RateMyGWU은(는) Jamie Scott에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays Rate My Professors information directly on the GW schedule of classes"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Makes the lives of GW students easier by displaying Rate My Professor data directly on the GW schedule of classes.
Simply hover over a professors name to see information such as their overall rating and their level of difficulty!
You may also click on the professors name to be linked directly to their Rate My Professor page.                    

확장 프로그램 기본 정보

이름 RateMyGWU RateMyGWU
ID cpbecdacgjgpnpehjgkhddiancbonija
공식 URL https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija
설명 Displays Rate My Professors information directly on the GW schedule of classes
파일 크기 408 KB
설치 횟수 85
현재 버전 1.0
최근 업데이트 2020-08-17
출시 날짜 2020-08-17
평점 5.00/5 총 2 개의 평점
개발자 Jamie Scott
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JamieScottC/RateMyGWU
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateMyGWU",
    "version": "1.0",
    "description": "Displays Rate My Professors information directly on the GW schedule of classes",
    "permissions": [
        "*:\/\/www.ratemyprofessors.com\/*",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "css\/rate.css",
        "fonts\/Manrope\/Manrope-VariableFont_wght.ttf"
    ],
    "background": {
        "scripts": [
            "\/js\/jquery-3.5.1.min.js",
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.gwu.edu\/mod\/pws\/courses.cfm?campId=*&termId=*&subjId=*"
            ],
            "js": [
                "\/js\/jquery-3.5.1.min.js",
                "\/js\/injectRate.js"
            ],
            "css": [
                "\/css\/rate.css"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/RateMyGWULogo16.png",
            "32": "images\/RateMyGWULogo32.png",
            "48": "images\/RateMyGWULogo48.png",
            "128": "images\/RateMyGWULogo128.png"
        }
    },
    "icons": {
        "16": "images\/RateMyGWULogo16.png",
        "32": "images\/RateMyGWULogo32.png",
        "48": "images\/RateMyGWULogo48.png",
        "128": "images\/RateMyGWULogo128.png"
    },
    "manifest_version": 2
}