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是由notnavindu開發的Chrome擴展程式,該擴展的主要功能是“A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly”。
擴展截圖
下載SLIIT Eduscope Mods擴展crx文件
下載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 |
| 官方網址 | 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"
}
} | |