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ファイルをダウンロード

RateMyTracks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}