Skip to content

Instantly share code, notes, and snippets.

@a2nt
Last active November 2, 2016 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a2nt/7e141740866728f24beee5144f4b98ad to your computer and use it in GitHub Desktop.
Save a2nt/7e141740866728f24beee5144f4b98ad to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name moonwalk Video Ads Remover
// @namespace http://tampermonkey.net/
// @version 0.1
// @description When I watch movies only video player ads makes me cry they're blocked by AdBlock, but I can't start play a video without waiting for 14 sec
// @author You
// @match http://moonwalk.cc/*/iframe*
// @match http://logethy.com/*/frame*
// @match http://moonwalk.center/*/iframe*
// @grant none
// ==/UserScript==
$('#player').click(function(){
adv_showed = true;
showVideo();
console.log('Fuck moonwalk.cc Ads');
setTimeout(function(){
$('#MToverroll').css('z-index','9999999');
},10000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment