Removes the watermark when printing samples on musicnotes.com
// ==UserScript==
// @name Musicnotes Sample Watermark Remover
// @namespace http://tampermonkey.net/
// @version 1
// @description Removes the watermark when printing samples on musicnotes.com
// @author bvdeijzen
// @license MIT
// @match *://www.musicnotes.com/sheetmusic/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
/*global Mneme */
Mneme.Render.MtdInterp.prototype.Sample = () => {};
})();