Simple Moodle

Make Moodle simpler

Vad är Simple Moodle?

Simple Moodle är en Chrome-tillägg utvecklad av atjn, och dess huvudfunktion är "Make Moodle simpler".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Simple Moodle-förlängningens CRX-fil

Ladda ner Simple Moodle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Simple Moodle Simple Moodle
ID fbmkgaebooghmoldfmjgedkomjkkfgao
Officiell webbadress https://chromewebstore.google.com/detail/simple-moodle/fbmkgaebooghmoldfmjgedkomjkkfgao
Beskrivning Make Moodle simpler
Filstorlek 45.98 KB
Antal Installationer 37
Aktuell Version 2.0.0
Senast Uppdaterad 2023-07-13
Publiceringsdatum 2022-09-13
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare atjn
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/atjn/simple-moodle
Hjälpsida URL https://github.com/atjn/simple-moodle/issues
Stödda Språk 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\/*"
            ]
        }
    ]
}