Badger Chrome

Provides a way to view the RateMyProfessor statistics of professors when in the myUW student center.

Badger Chromeคืออะไร?

Badger Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spicybadger และคุณลักษณะหลักของมันคือ "Provides a way to view the RateMyProfessor statistics of professors when in the myUW student center."

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

screenshot
screenshot

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

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

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

                        Tired of opening a new window to search on RateMyProfessor for that suspicious professor in the student center?

This chrome extension will allow students at the University of Wisconsin-Madison view RateMyProfessor ratings/reviews inside the student portal!

Just hover over a professor's name in the portal, click on the view data button, and if the professor has ratings on RateMyProfessor they will appear!

If you click on the UW logo in the top right of your browser while in the student center, a popup window with the RateMyProfessor search will show up.

Also, if you hover over a room/building for a class, you can click on the "Show/Refresh Button" to show a map of the location when clicking on the icon!

Finally, if you hover over the class number, you can click on "Seat Data" to check out the available seats for the class!

DISCLAIMERS:
1. All teacher/class data is owned by UW-Madison.
2. This extension is a free resource for UW-Students and will always be that way.
3. Rating data belongs to RateMyProfessor.com
4. If format of student center changes, it may break the app. I will fix it ASAP if that happens.                    

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

ชื่อ Badger Chrome Badger Chrome
ID lkicmjjkgbklipjbfajgjpjannjbahfp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/badger-chrome/lkicmjjkgbklipjbfajgjpjannjbahfp
คำอธิบาย Provides a way to view the RateMyProfessor statistics of professors when in the myUW student center.
ขนาดไฟล์ 25 KB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน 1.3.7
อัปเดตครั้งล่าสุด 2016-11-08
วันที่เผยแพร่ 2016-11-07
คะแนน 4.33/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา spicybadger
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Badger Chrome",
    "version": "1.3.7",
    "description": "Provides a way to view the RateMyProfessor statistics of professors when in the myUW student center.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Badger Chrome",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "https:\/\/portal.sis.wisc.edu\/*",
        "http:\/\/portal.sis.wisc.edu\/*",
        "*:\/\/*.portal.sis.wisc.edu\/*",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.portal.sis.wisc.edu\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}