Trimoodle

toggle courses visibility from the moodle sidebar

Vad är Trimoodle?

Trimoodle är en Chrome-tillägg utvecklad av nadav.goldstein96, och dess huvudfunktion är "toggle courses visibility from the moodle sidebar".

Tilläggsskärmbilder

screenshot

Ladda ner Trimoodle-förlängningens CRX-fil

Ladda ner Trimoodle-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

                        A new way to toggle the visibility of the courses at the sidebar in the moodle website (huji)

Open source: https://github.com/nadav96/trimoodle                    

Grundläggande Information om Tillägg

Namn Trimoodle Trimoodle
ID najiiglmdjablddfmgegpookgecbddej
Officiell webbadress https://chromewebstore.google.com/detail/trimoodle/najiiglmdjablddfmgegpookgecbddej
Beskrivning toggle courses visibility from the moodle sidebar
Filstorlek 199 KB
Antal Installationer 219
Aktuell Version 1.8
Senast Uppdaterad 2021-10-11
Publiceringsdatum 2021-04-02
Betyg 4.97/5 Totalt 34 Betyg
Utvecklare nadav.goldstein96
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trimoodle",
    "description": "toggle courses visibility from the moodle sidebar",
    "version": "1.8",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/icon25.png",
        "default_popup": "popup.html",
        "default_title": "Trim moodle"
    },
    "permissions": [
        "https:\/\/moodle2.cs.huji.ac.il\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "3party\/jquery-3.6.0.min.js",
                "3party\/snackbar\/snackbar.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/moodle2.cs.huji.ac.il\/*"
            ],
            "css": [
                "3party\/snackbar\/snackbar.min.css"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    }
}