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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

SLIIT Eduscope Mods 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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)                    

확장 프로그램 기본 정보

이름 SLIIT Eduscope Mods SLIIT Eduscope Mods
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"
    }
}