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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SLIIT Eduscope Mods एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}