UofT Timetable Rating Embedder

A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.

UofT Timetable Rating Embedderคืออะไร?

UofT Timetable Rating Embedder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TheLegendaryBanana และคุณลักษณะหลักของมันคือ "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UofT Timetable Rating Embedder

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

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

                        This chrome extension gets the ratings from www.ratemyprofessors.com for all the instructors that you are currently searching courses for on https://timetable.iit.artsci.utoronto.ca/ so you don't have to.

You can now leisurely search for the best professors each class has to offer, if they have an existing review.

To use simply click the acorn after you search for any course(s) on the ArtSci course finder.                    

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

ชื่อ UofT Timetable Rating Embedder UofT Timetable Rating Embedder
ID ihcpidochhfbfibmdbogigfpnpaceeok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/uoft-timetable-rating-emb/ihcpidochhfbfibmdbogigfpnpaceeok
คำอธิบาย A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.
ขนาดไฟล์ 32.65 KB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2017-07-10
วันที่เผยแพร่ 2017-07-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา TheLegendaryBanana
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UofT Timetable Rating Embedder",
    "version": "1.0.2",
    "description": "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "page_action": {
        "default_icon": "icon16.png",
        "default_title": "RMP Rating Embedder"
    },
    "background": {
        "scripts": [
            "eventPage.js",
            "tracker.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/timetable.iit.artsci.utoronto.ca\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/timetable.iit.artsci.utoronto.ca\/",
        "http:\/\/www.ratemyprofessors.com\/*"
    ],
    "web_accessible_resources": [
        "cold-chili.png",
        "new-hot-chili.png"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}