Moodle Buddy

Moodle Buddy offers mass file download and notification functionality for the moodle learning management platform.

Vad är Moodle Buddy?

Moodle Buddy är en Chrome-tillägg utvecklad av marcelreppi, och dess huvudfunktion är "Moodle Buddy offers mass file download and notification functionality for the moodle learning management platform.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

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

Ladda ner Moodle Buddy-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

                        You are a student and your university uses Moodle as their learning management platform?
You frequently use Moodle to access course material?
You are tired of missing updates and downloading every file one at a time?

This browser plugin will save you a lot of time! It will scan your Moodle course for all available resources (PDF
documents, etc.) and allow you to download them all at once.

Furthermore, Moodle Buddy scans your courses for any updates and shows them to you. You can immediately download new
resources from your Moodle Dashboard via the plugin.

Feature requests or questions?
Send me an email at [email protected]

How to use:
1. Log into your university's Moodle system
2. Visit any of the following Moodle webpages:
    - Moodle Dashboard/Course Overview (URL ending on /my)
    - Any Moodle course page (URL includes /course)
    - Moodle video page (URL includes /videoservice)
3. Click the Moodle Buddy icon in the extension bar of your browser
4. Explore all the features Moodle Buddy has to offer

Full Feature List
  Course Page
    - Download all course resources with one click
    - Scans single Moodle courses for new resources
    - Scans single Moodle courses for new activities (Assignment Uploads, Forums, etc.)
    - Shows you when new resources or actitivities have been detected
    - Download only new resources from a course
    - Filter downloadable resources for files and folders
    - Modify file names of the downloaded resources
  
  Dashboard
    - Shows updates (resources & activities) for all courses from the overview page
    - Download new resources directly from the overview page
    - Scans your courses in the background (if you are logged in) in notifies you if there are upates

Privacy
I do not have access to any login data!
The resources are ONLY downloaded to YOUR computer!
I do NOT collect the downloaded resources in any way!                    

Grundläggande Information om Tillägg

Namn Moodle Buddy Moodle Buddy
ID nomahjpllnbcpbggnpiehiecfbjmcaeo
Officiell webbadress https://chromewebstore.google.com/detail/moodle-buddy/nomahjpllnbcpbggnpiehiecfbjmcaeo
Beskrivning Moodle Buddy offers mass file download and notification functionality for the moodle learning management platform.
Filstorlek 569 KB
Antal Installationer 3,702
Aktuell Version 1.53
Senast Uppdaterad 2021-12-14
Publiceringsdatum 2020-06-09
Betyg 4.90/5 Totalt 155 Betyg
Utvecklare marcelreppi
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://moodlebuddy.com/
Hjälpsida URL https://moodlebuddy.com/
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Moodle Buddy",
    "version": "1.53",
    "description": "Moodle Buddy offers mass file download and notification functionality for the moodle learning management platform.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "",
        "activeTab",
        "downloads",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-gray.png",
            "32": "icons\/32-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        },
        "default_title": "Moodle Buddy",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "shared\/browser-polyfill.js",
                "content-scripts\/index.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "shared\/browser-polyfill.js",
            "background-scripts\/extensionListener.js",
            "background-scripts\/downloader.js",
            "background-scripts\/backgroundScanner.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options\/options.html"
    }
}