SLIIT Eduscope Mods

A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly

SLIIT Eduscope Mods là gì?

SLIIT Eduscope Mods là một tiện ích mở rộng Chrome được phát triển bởi notnavindu, và tính năng chính của nó là "A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SLIIT Eduscope Mods

Tải xuống các tệp mở rộng SLIIT Eduscope Mods dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SLIIT Eduscope Mods SLIIT Eduscope Mods
ID jbdlifpjhhdeebldjchepcfddcimdoof
URL Chính Thức https://chromewebstore.google.com/detail/sliit-eduscope-mods/jbdlifpjhhdeebldjchepcfddcimdoof
Mô tả A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly
Kích Thước Tệp 36.09 KB
Số Lần Cài Đặt 1,884
Phiên Bản Hiện Tại 3.5.1
Cập Nhật Lần Cuối 2024-01-27
Ngày Phát Hành 2020-08-09
Đánh Giá 4.96/5 Tổng số 23 Đánh Giá
Nhà Phát Triển notnavindu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/notnavindu/SLIIT-Eduscope-Mods
URL Trang Trợ Giúp https://github.com/notnavindu/SLIIT-Eduscope-Mods/issues
URL Trang Chính Sách Bảo Mật https://edu-graph.vercel.app/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}