Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
// ==UserScript== // @name Hide Frame TogetherTube // @namespace http://togethertube.com/ // @version 0.1 // @description Hiding the video so you can listen at work // @author jiskim // @match https://togethertube.com/* // @grant none // ==/UserScript== var player=$('.player-overlay-wrapper'); var ButtonAdded; (function() { ButtonAdded = $('<button id="ButtonHide" type="button" class="btn btn-default navbar-btn">' + '</button>'); if(checkIfVisible(player)){ ButtonAdded.text("Hide Player"); }else{ ButtonAdded.text("Show Player"); } $("#bs-example-navbar-collapse-1").append(ButtonAdded); //--- Activate the newly added button. ButtonAdded.click(ButtonClickAction); })(); function ButtonClickAction () { if(checkIfVisible(player)){ player.css("visibility","hidden"); ButtonAdded.text("Show Player"); }else{ player.css("visibility","visible"); ButtonAdded.text("Hide Player"); } } function checkIfVisible (el) { if($(el).filter("[style='visibility: hidden;']").length===0){ return true; }else{ return false; } }