NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Badoo Ad Remover // @require http://code.jquery.com/jquery-1.12.4.min.js // @version 0.1 // @description Remove Ad from top // @author wuster.me // @match https://badoo.com/** // ==/UserScript== $(document).ready(function(){ $("#page-perfect-top").hide(); $(".page__wrap").css("top", "0"); $("#app_s").css("top", "0"); });