Skip to content

Instantly share code, notes, and snippets.

@malte-j
Last active November 25, 2019 10:10
Show Gist options
  • Save malte-j/7ac7505f272f4cabf1f7bfa3f4f2e84b to your computer and use it in GitHub Desktop.
Save malte-j/7ac7505f272f4cabf1f7bfa3f4f2e84b to your computer and use it in GitHub Desktop.
LMS ohne Downloadzwang von Anhängen
// ==UserScript==
// @name LMS Kein Downloadzwang
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Verhindert Downloadzwang von verlinkten Dokumenten
// @author Malte Janßen
// @match https://lms.beuth-hochschule.de/mod/assign/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.onload = () => document.querySelectorAll('.ygtvitem a:not(.ygtvspacer)').forEach(el=> {el.href = el.href.split('?forcedownload=1')[0]})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment