Simple Moodle

Make Moodle simpler

Was ist Simple Moodle?

Simple Moodle ist eine Chrome-Erweiterung, die von atjn entwickelt wurde, und ihr Hauptmerkmal ist "Make Moodle simpler".

Erweiterungsscreenshots

screenshot
screenshot

Simple Moodle-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Moodle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Moodle is a bloated mess. Most of the time you just need to quickly find a course, but Moodle will present you with 13962 random buttons that each do some specific thing, and will make sure to thoroughly hide the course you're looking for somewhere in a corner.

Simple Moodle allows you to enable a simpler view that highlights what you are looking for 99% of the time, and removes all the other bloat. For the other 1% of the time where you really do need an advanced button, you can easily disable the view, do your thing, and then reenable it to get back to your normal and simple 99% workflow again.                    

Grundlegende Informationen zur Erweiterung

Name Simple Moodle Simple Moodle
ID fbmkgaebooghmoldfmjgedkomjkkfgao
Offizielle URL https://chromewebstore.google.com/detail/simple-moodle/fbmkgaebooghmoldfmjgedkomjkkfgao
Beschreibung Make Moodle simpler
Dateigröße 45.98 KB
Installationsanzahl 37
Aktuelle Version 2.0.0
Letztes Update 2023-07-13
Veröffentlichungsdatum 2022-09-13
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler atjn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/atjn/simple-moodle
Hilfeseite URL https://github.com/atjn/simple-moodle/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Make Moodle simpler",
    "manifest_version": 3,
    "name": "Simple Moodle",
    "version": "2.0.0",
    "homepage_url": "https:\/\/github.com\/atjn\/simple-moodle",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "144": "images\/icon-144.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "simpleMoodle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "scripts\/*",
                "styles\/*"
            ]
        }
    ]
}