YorkRMP

RMP extension for YorkU's course page.

YorkRMPคืออะไร?

YorkRMP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mohammad Mahfooz และคุณลักษณะหลักของมันคือ "RMP extension for YorkU's course page."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YorkRMP

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

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

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

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

ชื่อ YorkRMP YorkRMP
ID cdhfogbjpedkpmapnddalehbjdjahfmp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/yorkrmp/cdhfogbjpedkpmapnddalehbjdjahfmp
คำอธิบาย RMP extension for YorkU's course page.
ขนาดไฟล์ 8.97 KB
จำนวนการติดตั้ง 138
เวอร์ชันปัจจุบัน 1.2.7
อัปเดตครั้งล่าสุด 2023-12-17
วันที่เผยแพร่ 2023-01-17
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Mohammad Mahfooz
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mahfoozm/YorkURMP
URL หน้านโยบายความเป็นส่วนตัว https://github.com/mahfoozm/YorkURMP/blob/main/README.md
ภาษาที่รองรับ 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"
            ]
        }
    ]
}