CiLiBi18 / PcGamesDownloadAdsRemover

// ==UserScript==
// @name        PcGamesDownloadAdsRemover
// @namespace   PcGamesDownloadAdsRemover
// @version     1.03
// @description Remove Ads from PCGames-Download
// @include     http://pcgames-download.*/*
// @include     https://pcgames-download.*/*
// @include     http://*.pcgames-download.*/*
// @include     https://*.pcgames-download.*/*
// @grant       metadata
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
// @copyright   2016, LeFoulek
// ==/UserScript==

$(function(){
    $('#niceMessage').hide();
    $('div.sidebar.fright > div.widget.widget_search').next('div.widget_text').hide();
    $('div.post-meta-container').next('div').hide();
    $('div.content.fleft > div.post > div.post-content').next('div').hide(); /* on Top-best pages */
});