Created
March 8, 2022 02:46
-
-
Save BIOS9/ed2259d014f06312209a926d104633ce to your computer and use it in GitHub Desktop.
Removes copyright notice from Panopto player.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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