Rate My Gopher UMN Professor Ratings

Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.

Rate My Gopher UMN Professor Ratings란 무엇입니까?

Rate My Gopher UMN Professor Ratings은(는) https://yelt3d.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC."입니다.

확장 프로그램 스크린샷

screenshot

Rate My Gopher UMN Professor Ratings 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        See Rate My Professors ratings alongside a professor's name when searching for UMN courses.

When searching for courses on UMN's schedule builder, RMP's overall score, difficulty score, and review tags will be shown on the righthand side of the screen for each instructor teaching the course. Clicking on the professor's name will open a link to the RMP website with detailed responses and reviews.

1. Load up the University of Minnesota schedule builder.
2. Click the "Search Professors Button"                    

확장 프로그램 기본 정보

이름 Rate My Gopher UMN Professor Ratings Rate My Gopher UMN Professor Ratings
ID pmblceckdalgamfhocahemcelikplpkg
공식 URL https://chromewebstore.google.com/detail/rate-my-gopher-umn-profes/pmblceckdalgamfhocahemcelikplpkg
설명 Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.
파일 크기 46.89 KB
설치 횟수 160
현재 버전 0.1
최근 업데이트 2020-01-15
출시 날짜 2020-01-15
평점 4.86/5 총 7 개의 평점
개발자 https://yelt3d.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://yelt3d.com/coding-projects/university-of-minnesota-rate-my-professor-chrome-extension/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rate My Gopher UMN Professor Ratings",
    "version": "0.1",
    "description": "Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png"
        },
        "default_popup": "popup.html",
        "default_title": "Check here to see Rate My Goper instructions and developer credits."
    },
    "permissions": [
        "https:\/\/solr-aws-elb-production.ratemyprofessors.com\/*"
    ],
    "icons": {
        "128": "icon128.png",
        "32": "icon32.png",
        "48": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/schedulebuilder.umn.edu\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}