Thu Jul 28 2016
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
// auto-skip videos if url parameter "skipvideos=yes"
(function(){
	function parameterMatches(param,val){
		var reg = new RegExp('[?&]'+param+'='+val+'(?=[&]|$)','i');
		return !!window.location.search.match(reg);
	}
	if(parameterMatches('skipvideos','yes')){
		document.getElementById('skip-videos').click();
	}
})();