Skip to content

Instantly share code, notes, and snippets.

@BIOS9
Created March 8, 2022 02:46
Show Gist options
  • Select an option

  • Save BIOS9/ed2259d014f06312209a926d104633ce to your computer and use it in GitHub Desktop.

Select an option

Save BIOS9/ed2259d014f06312209a926d104633ce to your computer and use it in GitHub Desktop.
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.
// ==/UserScript==
(function() {
'use strict';
Panopto.viewer.showCopyrightNotice = false;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment