Terp Data
Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead…
Terp Dataคืออะไร?
Terp Data เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TerpData และคุณลักษณะหลักของมันคือ "Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Terp Data
ดาวน์โหลดไฟล์ส่วนขยาย Terp Data ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead of having to search other sites for the reviews! If you enjoy being lazy, this is the perfect chrome extension for you!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Terp Data |
ID | lblmemcjbfkeemdnbpfbbihhjehcfngg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/terp-data/lblmemcjbfkeemdnbpfbbihhjehcfngg |
คำอธิบาย | Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead… |
ขนาดไฟล์ | 2.33 MB |
จำนวนการติดตั้ง | 128 |
เวอร์ชันปัจจุบัน | 0.3.0 |
อัปเดตครั้งล่าสุด | 2020-05-15 |
วันที่เผยแพร่ | 2020-05-14 |
คะแนน | 4.91/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | TerpData |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Terp Data", "version": "0.3.0", "content_scripts": [ { "matches": [ "https:\/\/app.testudo.umd.edu\/soc\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "terpdata.png", "default_popup": "popup\/index.html", "default_title": "Terp Data" }, "icons": { "128": "terpdata.png" }, "web_accessible_resources": [ "professor_data.json" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/cdnjs.cloudflare.com https:\/\/maxcdn.bootstrapcdn.com; object-src 'self'" } |