StudEaz for Google Classroom

Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks.

Что такое StudEaz for Google Classroom?

StudEaz for Google Classroom - это расширение Chrome, разработанное Microsoft Learn Student Ambassadors SRM, и его основная функция - "Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения StudEaz for Google Classroom

Скачайте файлы расширений StudEaz for Google Classroom в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Tired of opening every document in a new tab and then downloading them one by one? Too time consuming for last minute exam preparation?

StudEaz is a browser extension to download multiple documents from a Google Classroom in a few clicks.

It extracts links of the study material uploaded in your classroom, allows you to select the documents you want and you have the documents downloaded to your laptop in about 2 clicks!                    

Основная информация о расширении

Название StudEaz for Google Classroom StudEaz for Google Classroom
ID ddmpckcmhpnpgfcgfgeklphbbigknjgf
Официальный URL https://chromewebstore.google.com/detail/studeaz-for-google-classr/ddmpckcmhpnpgfcgfgeklphbbigknjgf
Описание Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks.
Размер файла 107 KB
Количество установок 829
Текущая Версия 1.3
Последнее Обновление 2021-03-04
Дата публикации 2021-01-25
Рейтинг 3.55/5 Всего 11 оценок
Разработчик Microsoft Learn Student Ambassadors SRM
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/MLSA-SRM/GCR-Extension/
URL страницы помощи https://msclubsrm.in
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "StudEaz for Google Classroom",
    "version": "1.3",
    "description": "Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks.",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/classroom.google.com\/*",
                "http:\/\/classroom.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_icon": "assets\/icon16.png",
        "default_popup": "pop.html",
        "default_title": "StudEaz for Google Classroom"
    }
}