RateMyTracks

Get clear insights into professors at the University of Alberta while browsing Beartracks.

RateMyTracks란 무엇입니까?

RateMyTracks은(는) RateMyTracks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get clear insights into professors at the University of Alberta while browsing Beartracks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        RateMyTracks helps you find the best classes to take when building a schedule on BearTracks. 

It does this by displaying ratings and linking reviews from Rate My Professors within Beartracks, no other setup required.

Features:
- Shows the Rate My Professors rating next to each professor's name
- Each professor's name becomes a link to their reviews
- Button to control when the extension is on
- Seamlessly integrated into Beartracks, just install and go
- 100% free no payment required

RateMyTracks is not endorsed or sponsored by the University of Alberta or Rate My Professors.

Developed in Edmonton by Youssef Ismail, Rupin Bapuji, Bennett Wiredu, and Kourosh Kehtari.                    

확장 프로그램 기본 정보

이름 RateMyTracks RateMyTracks
ID fejbmlpffkoiinhibcojnjldfhedomfe
공식 URL https://chromewebstore.google.com/detail/ratemytracks/fejbmlpffkoiinhibcojnjldfhedomfe
설명 Get clear insights into professors at the University of Alberta while browsing Beartracks.
파일 크기 105 KB
설치 횟수 249
현재 버전 1.1.1
최근 업데이트 2021-07-23
출시 날짜 2021-07-21
개발자 RateMyTracks
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://forms.gle/fFzfrTCQYAqk18zS9
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateMyTracks",
    "description": "Get clear insights into professors at the University of Alberta while browsing Beartracks.",
    "version": "1.1.1",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.beartracks.ualberta.ca\/*"
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "profData.json"
            ],
            "matches": [
                "https:\/\/www.beartracks.ualberta.ca\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}