RMP Schedule Builder Links

Get links to the ratemyprofessor pages for the professor(s) of each class!

RMP Schedule Builder Links क्या है?

RMP Schedule Builder Links Rachit Sharma द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get links to the ratemyprofessor pages for the professor(s) of each class!"।

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

screenshot
screenshot

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

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

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

                        As a sophomore at the UC Davis, I have been using schedule builder for quite some time. When recently using it for the fall quarter, I found it cumbersome to have to open a new tab and type in a professors name in order to get their ratemyprofessor scores and see the comments. While I know that extensions are available to show RMP scores directly on classes, often the best information comes from the comments. Because of this, I created an extension that automatically shows RMP links next to the professor(s) name of any class. Just click on it, and you will be lead directly to the ratemyprofessor site of the professor of the class. It is very convenient and will save you precious time!                    

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

नाम RMP Schedule Builder Links RMP Schedule Builder Links
ID bkoaldjpbiffcglcdkkiccjolepciajh
आधिकारिक URL https://chromewebstore.google.com/detail/rmp-schedule-builder-link/bkoaldjpbiffcglcdkkiccjolepciajh
विवरण Get links to the ratemyprofessor pages for the professor(s) of each class!
फ़ाइल का आकार 48.67 KB
स्थापना संख्या 26
वर्तमान संस्करण 0.1
अंतिम अपडेट 2021-09-14
प्रकाशन तिथि 2021-09-14
डेवलपर Rachit Sharma
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/RachitSharma2001/AllPossibleSchedules
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RMP Schedule Builder Links",
    "description": "Get links to the ratemyprofessor pages for the professor(s) of each class!",
    "version": "0.1",
    "icons": {
        "16": "Icon_16.png",
        "48": "Icon_48.png",
        "128": "Icon_128.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/my.ucdavis.edu\/schedulebuilder\/index.cfm*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "test_file.txt"
            ],
            "matches": [
                ""
            ]
        }
    ]
}