Skip to content

Instantly share code, notes, and snippets.

@sauyon
Created August 31, 2014 04:21
Show Gist options
  • Save sauyon/e647f35013ba27a2bd57 to your computer and use it in GitHub Desktop.
Save sauyon/e647f35013ba27a2bd57 to your computer and use it in GitHub Desktop.
KissAnime adblock
// ==UserScript==
// @name Kissanime Adblocker
// @namespace http://sauyon.com/
// @version 0.1
// @description enter something useful
// @match http://kissanime.com/*
// @copyright 2013, Sauyon
// ==/UserScript==
if(window.top != window.self) {
GM_log("frame: " + location.href);
return;
}
DoDetect2 = function() {};
$('*[id^="adsIfrme"][id!="adsIfrme"]').remove();
$('iframe').remove();
$('embed[id!="centerDivVideo"]').remove();
$('.divCloseBut').remove();
$('#adsIfrme .clear2').remove();
$('#divFloatLeft, #divFloatRight').remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment