Rate My Professor Extension

Displays the reviews for professors from Rate My Professors on the class registration page.

Rate My Professor Extension là gì?

Rate My Professor Extension là một tiện ích mở rộng Chrome được phát triển bởi torresos, và tính năng chính của nó là "Displays the reviews for professors from Rate My Professors on the class registration page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Rate My Professor Extension

Tải xuống các tệp mở rộng Rate My Professor Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension seamlessly displays professor ratings from Rate My Professors under their names on the class registration pages for Oregon State University and University of British Columbia. We cut down the time you spend looking up professors by providing the average review rating directly on the class registration page along with a direct link to the professor's Rate My Professors page.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Rate My Professor Extension Rate My Professor Extension
ID hgfogfefocfabnfjmjijfcjogeghmocn
URL Chính Thức https://chromewebstore.google.com/detail/rate-my-professor-extensi/hgfogfefocfabnfjmjijfcjogeghmocn
Mô tả Displays the reviews for professors from Rate My Professors on the class registration page.
Kích Thước Tệp 111 KB
Số Lần Cài Đặt 315
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2023-08-13
Ngày Phát Hành 2023-08-04
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển torresos
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/osu-rate-my-professor-ext\/hgfogfefocfabnfjmjijfcjogeghmocn",
    "version": "0.0.3",
    "version_name": "0.0.3",
    "manifest_version": 3,
    "default_locale": "en",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "assets\/img\/128x128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/classes.oregonstate.edu\/*"
            ],
            "js": [
                "OregonSU.js"
            ]
        },
        {
            "matches": [
                "https:\/\/courses.students.ubc.ca\/cs\/courseschedule*"
            ],
            "js": [
                "UBC.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.ratemyprofessors.com\/*"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/img\/16x16.png",
            "24": "assets\/img\/24x24.png",
            "32": "assets\/img\/32x32.png"
        },
        "default_title": "__MSG_appName__"
    }
}