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 torresos द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays the reviews for professors from Rate My Professors on the class registration page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rate My Professor Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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__"
    }
}