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ファイルをダウンロード

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)                    

拡張機能の基本情報

名前 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
Eメール [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"
    }
}