Advertisement
Peaser

th-thanks

May 2nd, 2015
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. String.prototype.conts = function(it) { return this.indexOf(it) != -1; };
  2. $(document).ready(function() {
  3.     var BAD = ["IGNORE", "DOM_", "SEEK", "stream"];
  4.     $("#ad-extra-flat").remove();
  5.     $('a.optionspace[target=_blank]').removeAttr("target");
  6.     $("b.t-image").each(function(){
  7.         var title = $(this).find("span").attr("title");
  8.         for (var i=0; i<BAD.length; i++){
  9.             if (title.toLowerCase().conts(BAD[i])) {
  10.               $(this).remove();
  11.             }
  12.         }
  13.     });
  14. });
  15.  
  16.  
  17. /* why version */
  18.  
  19. String.prototype.conts = function (t) {
  20.     return -1 != this.indexOf(t);
  21. }
  22. $(document).ready(function () {
  23.     var t = ["IGNORE", "DOM_", "SEEK", "stream"];
  24.     $("#ad-extra-flat").remove();
  25.     $("a.optionspace[target=_blank]").removeAttr("target");
  26.     $("b.t-image").each(function () {
  27.         for (var e = $(this).find("span").attr("title"), a = 0; a < t.length; a++) {
  28.             e.toLowerCase().conts(t[a]) && $(this).remove();
  29.         }
  30.     });
  31. });
  32.  
  33.  
  34.  
  35. /* why-er version */
  36.  
  37. eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('x.s.6=3(t){q-1!=2.w(t)},$(i).h(3(){5 t=["j","k","l","g"];$("#m-d-8").4(),$("a.f[7=9]").c("7"),$("b.t-u").n(3(){y(5 e=$(2).z("A").v("p"),a=0;a<t.o;a++)e.r().6(t[a])&&$(2).4()})});',37,37,'||this|function|remove|var|conts|target|flat|_blank|||removeAttr|extra||optionspace|stream|ready|document|IGNORE|DOM_|SEEK|ad|each|length|title|return|toLowerCase|prototype||image|attr|indexOf|String|for|find|span'.split('|'),0,{}))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement