Easy Bruinwalk Ratings

Easily see Bruinwalk professor ratings in UCLA class search results.

Easy Bruinwalk Ratingsคืออะไร?

Easy Bruinwalk Ratings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bruinwalk และคุณลักษณะหลักของมันคือ "Easily see Bruinwalk professor ratings in UCLA class search results."

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

screenshot
screenshot

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

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

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

                        Adds Bruinwalk professor ratings and class grade distributions to MyUCLA class registration pages. Now you can see student ratings in your study list, class planner, and when finding new classes to enroll in!

Hover over the ratings to reveal a more detailed display. Click to see the professor's full Bruinwalk page. Please note that not all professors may be on Bruinwalk.

On professor evaluation surveys, look for a button near the bottom to automatically export your comments to Bruinwalk!

This extension is in active development. If you catch any problems for Chrome or Firefox, please let the Bruinwalk team know by sending feedback to [email protected].

Thanks to @RobertUrsua and @preethamrn on Github for the initial version of this extension!                    

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

ชื่อ Easy Bruinwalk Ratings Easy Bruinwalk Ratings
ID iohhcbccamefhmjnppendeffiapogjfg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-bruinwalk-ratings/iohhcbccamefhmjnppendeffiapogjfg
คำอธิบาย Easily see Bruinwalk professor ratings in UCLA class search results.
ขนาดไฟล์ 318 KB
จำนวนการติดตั้ง 15,132
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2024-02-22
วันที่เผยแพร่ 2020-07-03
คะแนน 5.00/5 รวมทั้งหมด 28 คะแนน
ผู้พัฒนา Bruinwalk
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bruinwalk.com
URL หน้านโยบายความเป็นส่วนตัว https://bruinwalk.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Easy Bruinwalk Ratings",
    "description": "Easily see Bruinwalk professor ratings in UCLA class search results.",
    "version": "1.1.0",
    "short_name": "Bruinwalk",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnegvvuv8lJi1JqtUtV0QLO4Vu0ilWbSav3pX8\/bhocx3xRBJXh\/BpRl6gxKyF5Na693XFjUrQkjbegIzJA3IstTrkabgnPaUhZWINK7yJKLcADsAnJvBDsAdue7ku+ufz7Hqb19860fUwjtxiKhgG8ZinaC0Y4eXBkm23cm8gRLPVYhcCHoT3RIeGvWcsKrR\/aNBLcJ+6PMQQx4k3FbtCpphQCVL8tbMbUWmYgAQNOh3GZFJS1AJ\/p1qaqlqHc7h\/DfoMgI3XTvkTgFuwdbVAvg53Tjqb9LG2K1V2aRJeHRBx2ns0xwZ5h4VSAOQ5BahTSK3yIoknTEMna0CkdVSoQIDAQAB",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/be.my.ucla.edu\/*",
                "*:\/\/sa.ucla.edu\/*"
            ],
            "js": [
                "class-planner.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/surveys.college.ucla.edu\/*"
            ],
            "js": [
                "prof-eval.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                "*:\/\/surveys.college.ucla.edu\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/index.html"
    },
    "permissions": [
        "storage",
        "identity"
    ],
    "host_permissions": [
        "*:\/\/*.bruinwalk.com\/*",
        "https:\/\/echo.pcheng.cc\/*"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}