Greasy Fork

Bye-Bye Ad

Removes ad

目前为 2016-08-27 提交的版本。查看 最新版本

// ==UserScript==
// @name        Bye-Bye Ad
// @namespace   Keka
// @description Removes ad
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @include     *katcr.co/*
// @version     1.1
// @grant       none
// ==/UserScript==


$(window).load(function(){
  $('div.news:nth-child(2) > div:nth-child(3)').remove();
  $('#main_content_section > center:nth-child(1)').remove();
});