Greasy Fork is available in English.
Removes copyright notice from Panopto player.
// ==UserScript==
// @name Copyright Notice Delyeeter
// @namespace Violentmonkey Scripts
// @match https://vstream.*.panopto.com/Panopto/Pages/Viewer.aspx
// @include /^https?://vstream\..+\.panopto\.com\/Panopto\/Pages\/Viewer\.aspx.*/
// @grant none
// @version 1.0
// @author BIOS9
// @description Removes copyright notice from Panopto player.
// @license MIT
// ==/UserScript==
(function() {
'use strict';
Panopto.viewer.showCopyrightNotice = false;
})();