RateMyTrojans

Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.

RateMyTrojansคืออะไร?

RateMyTrojans เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kyle Chua และคุณลักษณะหลักของมันคือ "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website."

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

screenshot

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

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

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

                        View the source code: https://github.com/kylechua/rmpLinks-USC                    

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

ชื่อ RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
คำอธิบาย Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
ขนาดไฟล์ 435 KB
จำนวนการติดตั้ง 192
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2018-08-08
วันที่เผยแพร่ 2018-07-09
ผู้พัฒนา Kyle Chua
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kylechua/rmpLinks-USC
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RateMyTrojans",
    "description": "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.",
    "version": "1.0.2",
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/webreg.usc.edu\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "findProfs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ],
    "permissions": [
        "https:\/\/www.ratemyprofessors.com\/*"
    ]
}