Rate My ASU Professors
Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.
Rate My ASU Professorsคืออะไร?
Rate My ASU Professors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Huan Doan และคุณลักษณะหลักของมันคือ "Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rate My ASU Professors
ดาวน์โหลดไฟล์ส่วนขยาย Rate My ASU Professors ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Are you spending a lot of time switching back and forth between ASU Class Search and RateMyProfessors.com? This extension will display the Professor's ratings directly on the ASU Class Search Website. Source code also available at https://github.com/dnhuan/RateMyASUProfessors Feel free to fork the repository or open a pull request
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Rate My ASU Professors |
ID | fjaecienfknhgnhipoobjjjlflbkadem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/rate-my-asu-professors/fjaecienfknhgnhipoobjjjlflbkadem |
คำอธิบาย | Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page. |
ขนาดไฟล์ | 84.39 KB |
จำนวนการติดตั้ง | 1,459 |
เวอร์ชันปัจจุบัน | 2.2.0 |
อัปเดตครั้งล่าสุด | 2023-11-03 |
วันที่เผยแพร่ | 2022-12-22 |
คะแนน | 5.00/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Huan Doan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/dnhuan/RateMyASUProfessors |
URL หน้าช่วยเหลือ | https://docs.google.com/forms/d/e/1FAIpQLSdfy-vyEc3lds8H6jYRtn50raGl24Kbo-pUGroU61WzXd5zMw/viewform |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rate My ASU Professors", "version": "2.2.0", "description": "Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.", "author": "[email protected]", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/catalog.apps.asu.edu\/*" ], "css": [ "content\/styles.css" ] }, { "matches": [ "https:\/\/*.asu.edu\/catalog\/classes*" ], "js": [ "content\/jquery-3.5.1.min.js", "content\/string-similarity.min.js", "content\/content.js" ] } ], "permissions": [ "activeTab", "background" ], "host_permissions": [ "https:\/\/*.asu.edu\/*", "https:\/\/www.ratemyprofessors.com\/*" ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 3 } |