SLIIT Eduscope Mods
A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly
SLIIT Eduscope Modsคืออะไร?
SLIIT Eduscope Mods เป็นส่วนขยายของ Chrome ที่พัฒนาโดย notnavindu และคุณลักษณะหลักของมันคือ "A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SLIIT Eduscope Mods
ดาวน์โหลดไฟล์ส่วนขยาย SLIIT Eduscope Mods ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A Simple Chrome Extension with a few simple mods for SLIIT's Eduscope video platform.
★ Features
- New compact UI Design
- Theater Mode
- Picture-in-picture mode for videos
- Auto-save last playback time (Continue where you left off!)
- Change video playback speed (0.5x, 1x, 1.25x, 1.5x, 1.75x, 2x, 2.5x)
- Dark Theme
- Design tweaks (Improved video controls, better font, and buttons)
- Disable spacebar scroll
Did anyone ask for this? No.
(Made for SLIIT Students) ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | jbdlifpjhhdeebldjchepcfddcimdoof |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sliit-eduscope-mods/jbdlifpjhhdeebldjchepcfddcimdoof |
| คำอธิบาย | A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly |
| ขนาดไฟล์ | 36.09 KB |
| จำนวนการติดตั้ง | 1,884 |
| เวอร์ชันปัจจุบัน | 3.5.1 |
| อัปเดตครั้งล่าสุด | 2024-01-27 |
| วันที่เผยแพร่ | 2020-08-09 |
| คะแนน | 4.96/5 รวมทั้งหมด 23 คะแนน |
| ผู้พัฒนา | notnavindu |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/notnavindu/SLIIT-Eduscope-Mods |
| URL หน้าช่วยเหลือ | https://github.com/notnavindu/SLIIT-Eduscope-Mods/issues |
| URL หน้านโยบายความเป็นส่วนตัว | https://edu-graph.vercel.app/privacy |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SLIIT Eduscope Mods",
"version": "3.5.1",
"description": "A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly",
"short_name": "Eduscope Mods",
"permissions": [
"storage",
"scripting",
"tabs",
"nativeMessaging"
],
"host_permissions": [
"*:\/\/lecturecapture.sliit.lk\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/lecturecapture.sliit.lk\/*"
],
"css": [
"background.css"
],
"js": [
"background.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"background": {
"service_worker": "sw.js"
},
"action": {
"default_title": "Eduscope Mods",
"default_popup": "popup.html",
"default_icon": "icons\/icon128.png"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
} | |