LUH-Tools

Tools for QIS and Stud.IP for students of the LUH.

Что такое LUH-Tools?

LUH-Tools - это расширение Chrome, разработанное C1aas, и его основная функция - "Tools for QIS and Stud.IP for students of the LUH.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения LUH-Tools

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

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

                        This browser extension offers 2 different functions for students of the Leibniz Universität Hannover.
- automatically extends the QIS page with your Creditpoints and grade.
- automatically inserts the download buttons for Stud.IP recordings/videos if they have been disabled by the creator.

This extension currently only works on '*.uni-hannover.de.'                    

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

Название LUH-Tools LUH-Tools
ID bebcdemficbpejlkjpnhhcbbeimihbfg
Официальный URL https://chromewebstore.google.com/detail/luh-tools/bebcdemficbpejlkjpnhhcbbeimihbfg
Описание Tools for QIS and Stud.IP for students of the LUH.
Размер файла 22.71 KB
Количество установок 135
Текущая Версия 1.1
Последнее Обновление 2022-10-16
Дата публикации 2022-10-12
Рейтинг 5.00/5 Всего 3 оценок
Разработчик C1aas
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LUH-Tools",
    "description": "Tools for QIS and Stud.IP for students of the LUH.",
    "version": "1.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/qis.verwaltung.uni-hannover.de\/*notenspiegelStudent&menu_open=n*"
            ],
            "js": [
                "qis-script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/studip.uni-hannover.de\/plugins.php\/flowcastsplugin\/media\/player\/*"
            ],
            "js": [
                "studip-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/LUH_tools_icon_16.png",
            "32": "\/images\/LUH_tools_icon_32.png",
            "48": "\/images\/LUH_tools_icon_48.png",
            "128": "\/images\/LUH_tools_icon_128.png"
        }
    },
    "icons": {
        "16": "\/images\/LUH_tools_icon_16.png",
        "32": "\/images\/LUH_tools_icon_32.png",
        "48": "\/images\/LUH_tools_icon_48.png",
        "128": "\/images\/LUH_tools_icon_128.png"
    }
}