FOSS Lectio improvements

A free and open source browser extension for Lectio with QoL features.

FOSS Lectio improvements क्या है?

FOSS Lectio improvements Banankage द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A free and open source browser extension for Lectio with QoL features."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में FOSS Lectio improvements एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A free and open source browser extension for Lectio.

This extension offers numerous QoL features to Lectio while maintaining most of its familiar appearance and layout. This enables you to use Lectio without having to adapt to a new user interface.

Features:
- Multi Browser Support
- Assignment filtering based on delivered and missing status
- Assignment deadline countdown timer with colors
- Profile images in messages
- Colored schedule blocks
- Schedule colors highlighting cancelled and changed classes
- A wide responsive layout
- Colored grades
- and much more soon to be added...

This extensions primary focus is QoL features with a small apperance overhaul. We wanted to provide a FOSS extension alternative, where every student or teacher using Lectio could participate in the development.

The open nature of this project also ensures that development can continue past interest of the original developers. With the closed source extension "Lectio Improver" now being abandoned, we feel like this is the optimal time for you to jump aboard and help this project become something big!                    

एक्सटेंशन की मूल जानकारी

नाम FOSS Lectio improvements FOSS Lectio improvements
ID dpkemhpefffgmciiijaakddhlllcfplh
आधिकारिक URL https://chromewebstore.google.com/detail/foss-lectio-improvements/dpkemhpefffgmciiijaakddhlllcfplh
विवरण A free and open source browser extension for Lectio with QoL features.
फ़ाइल का आकार 592 KB
स्थापना संख्या 33
वर्तमान संस्करण 1.5.2
अंतिम अपडेट 2024-01-05
प्रकाशन तिथि 2023-11-03
डेवलपर Banankage
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/logicguy1/FOSS-Lectio-improvements
सहायता पृष्ठ URL https://github.com/logicguy1/FOSS-Lectio-improvements/issues
समर्थित भाषाएँ da
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FOSS Lectio improvements",
    "version": "1.5.2",
    "description": "A free and open source browser extension for Lectio with QoL features.",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "64": "assets\/icons\/icon64.png",
        "128": "assets\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.lectio.dk\/*"
            ],
            "js": [
                "src\/lib\/settings.js",
                "src\/colors.js",
                "src\/misc.js",
                "src\/headhider.js",
                "src\/chrome.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lectio.dk\/*\/SkemaNy.aspx*"
            ],
            "js": [
                "src\/schedule.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lectio.dk\/*\/OpgaverElev.aspx*"
            ],
            "js": [
                "src\/assignment.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lectio.dk\/*\/AdgangIndstillinger.aspx*"
            ],
            "js": [
                "src\/settings.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lectio.dk\/*\/grade_report.aspx*"
            ],
            "js": [
                "src\/grades.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lectio.dk\/*\/beskeder2.aspx*"
            ],
            "js": [
                "src\/messagePictures.js"
            ]
        }
    ]
}