YorkRMP

RMP extension for YorkU's course page.

What is YorkRMP?

YorkRMP is a Chrome extension developed by Mohammad Mahfooz, and its main feature is "RMP extension for YorkU's course page.".

Extension Screenshots

screenshot
screenshot

Download YorkRMP Extension CRX File

Download YorkRMP extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Fetches professor info from RateMyProfessors and displays it under the corresponding professors name on VSB and the York University course portal.                    

Extension Basic Information

Name YorkRMP YorkRMP
ID cdhfogbjpedkpmapnddalehbjdjahfmp
Official URL https://chromewebstore.google.com/detail/yorkrmp/cdhfogbjpedkpmapnddalehbjdjahfmp
Description RMP extension for YorkU's course page.
File Size 8.97 KB
Installation Count 138
Current Version 1.2.7
Last Updated 2023-12-17
Publish Date 2023-01-17
Rating 5.00/5 Total 1 Ratings
Developer Mohammad Mahfooz
Email [email protected]
Payment Type free
Extension Website https://github.com/mahfoozm/YorkURMP
Privacy Policy Page URL https://github.com/mahfoozm/YorkURMP/blob/main/README.md
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YorkRMP",
    "description": "RMP extension for YorkU's course page.",
    "version": "1.2.7",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "https:\/\/w2prod.sis.yorku.ca\/*",
        "https:\/\/schedulebuilder.yorku.ca\/*",
        "https:\/\/www.ratemyprofessors.com\/*"
    ],
    "optional_permissions": [
        "webNavigation",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "event_page": "event.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/w2prod.sis.yorku.ca\/*",
                "https:\/\/schedulebuilder.yorku.ca\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}