Twitch Re Enable Save Clip

Re Enables Right Click Save As

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name          Twitch Re Enable Save Clip
// @namespace     http://userstyles.org
// @description   Re Enables Right Click Save As
// @author        636597
// @include       *://clips.twitch.tv/*
// @include       *://*twitch.tv/*/clip/*
// @run-at        document-start
// @version       1.1
// ==/UserScript==


(function() {
	console.log( "Twitch Renable Save Clip Loaded" );
	var ready = setInterval(function(){
		var player_element = document.getElementsByClassName( "player-overlay" );
		if ( player_element ) {
			player_element = player_element[0];
			//clearInterval( ready );
			player_element.style.display = "none";
		}
	} , 500 );
	setTimeout( function() { clearInterval( ready ); } , 10000 );
})();