RMP Schedule Builder Links

Get links to the ratemyprofessor pages for the professor(s) of each class!

RMP Schedule Builder Links란 무엇입니까?

RMP Schedule Builder Links은(는) Rachit Sharma에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get links to the ratemyprofessor pages for the professor(s) of each class!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

RMP Schedule Builder Links 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        As a sophomore at the UC Davis, I have been using schedule builder for quite some time. When recently using it for the fall quarter, I found it cumbersome to have to open a new tab and type in a professors name in order to get their ratemyprofessor scores and see the comments. While I know that extensions are available to show RMP scores directly on classes, often the best information comes from the comments. Because of this, I created an extension that automatically shows RMP links next to the professor(s) name of any class. Just click on it, and you will be lead directly to the ratemyprofessor site of the professor of the class. It is very convenient and will save you precious time!                    

확장 프로그램 기본 정보

이름 RMP Schedule Builder Links RMP Schedule Builder Links
ID bkoaldjpbiffcglcdkkiccjolepciajh
공식 URL https://chromewebstore.google.com/detail/rmp-schedule-builder-link/bkoaldjpbiffcglcdkkiccjolepciajh
설명 Get links to the ratemyprofessor pages for the professor(s) of each class!
파일 크기 48.67 KB
설치 횟수 26
현재 버전 0.1
최근 업데이트 2021-09-14
출시 날짜 2021-09-14
개발자 Rachit Sharma
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/RachitSharma2001/AllPossibleSchedules
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RMP Schedule Builder Links",
    "description": "Get links to the ratemyprofessor pages for the professor(s) of each class!",
    "version": "0.1",
    "icons": {
        "16": "Icon_16.png",
        "48": "Icon_48.png",
        "128": "Icon_128.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/my.ucdavis.edu\/schedulebuilder\/index.cfm*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "test_file.txt"
            ],
            "matches": [
                ""
            ]
        }
    ]
}