Removes ad
当前为
// ==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
// @grant none
// ==/UserScript==
$(window).load(function(){
$('div.news:nth-child(2) > div:nth-child(3)').remove();
});