Tools for QIS and Stud.IP for students of the LUH.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}
}