Rate My Professor Extension

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

Rate My Professor Extensionคืออะไร?

Rate My Professor Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย torresos และคุณลักษณะหลักของมันคือ "Displays the reviews for professors from Rate My Professors on the class registration page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rate My Professor Extension

ดาวน์โหลดไฟล์ส่วนขยาย Rate My Professor Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Rate My Professor Extension Rate My Professor Extension
ID hgfogfefocfabnfjmjijfcjogeghmocn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rate-my-professor-extensi/hgfogfefocfabnfjmjijfcjogeghmocn
คำอธิบาย Displays the reviews for professors from Rate My Professors on the class registration page.
ขนาดไฟล์ 111 KB
จำนวนการติดตั้ง 315
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2023-08-13
วันที่เผยแพร่ 2023-08-04
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา torresos
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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__"
    }
}