Rate My ASU Professors

Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.

Rate My ASU Professors क्या है?

Rate My ASU Professors Huan Doan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page."।

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

screenshot

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

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

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

                        Are you spending a lot of time switching back and forth between ASU Class Search and RateMyProfessors.com? This extension will display the Professor's ratings directly on the ASU Class Search Website.

Source code also available at https://github.com/dnhuan/RateMyASUProfessors
Feel free to fork the repository or open a pull request                    

एक्सटेंशन की मूल जानकारी

नाम Rate My ASU Professors Rate My ASU Professors
ID fjaecienfknhgnhipoobjjjlflbkadem
आधिकारिक URL https://chromewebstore.google.com/detail/rate-my-asu-professors/fjaecienfknhgnhipoobjjjlflbkadem
विवरण Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.
फ़ाइल का आकार 84.39 KB
स्थापना संख्या 1,459
वर्तमान संस्करण 2.2.0
अंतिम अपडेट 2023-11-03
प्रकाशन तिथि 2022-12-22
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर Huan Doan
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dnhuan/RateMyASUProfessors
सहायता पृष्ठ URL https://docs.google.com/forms/d/e/1FAIpQLSdfy-vyEc3lds8H6jYRtn50raGl24Kbo-pUGroU61WzXd5zMw/viewform
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rate My ASU Professors",
    "version": "2.2.0",
    "description": "Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.",
    "author": "[email protected]",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/catalog.apps.asu.edu\/*"
            ],
            "css": [
                "content\/styles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.asu.edu\/catalog\/classes*"
            ],
            "js": [
                "content\/jquery-3.5.1.min.js",
                "content\/string-similarity.min.js",
                "content\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "background"
    ],
    "host_permissions": [
        "https:\/\/*.asu.edu\/*",
        "https:\/\/www.ratemyprofessors.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 3
}