Better Brightspace
Changes the Brightspace homepage to focus on current courses.
Better Brightspaceคืออะไร?
Better Brightspace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 2matto และคุณลักษณะหลักของมันคือ "Changes the Brightspace homepage to focus on current courses."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better Brightspace
ดาวน์โหลดไฟล์ส่วนขยาย Better Brightspace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Better Brightspace |
ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
คำอธิบาย | Changes the Brightspace homepage to focus on current courses. |
ขนาดไฟล์ | 47.41 KB |
จำนวนการติดตั้ง | 45 |
เวอร์ชันปัจจุบัน | 0.0.0.6 |
อัปเดตครั้งล่าสุด | 2019-01-21 |
วันที่เผยแพร่ | 2019-01-21 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | 2matto |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Brightspace", "version": "0.0.0.6", "description": "Changes the Brightspace homepage to focus on current courses.", "icons": { "128": "BetterBrightSpace-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.brightspace.com\/*" ], "css": [ "content.css" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/home" ], "js": [ "home-content.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/le\/content\/*\/Home" ], "js": [ "course-content.js" ] } ], "browser_action": { "default_icon": "BetterBrightSpace-128.png" }, "manifest_version": 2 } |