NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ekşisözlük++ // @namespace https://github.com/cermik // @version 1.1 // @description okunabilirliği artırılmış ve reklamlardan arındırılmış ekşisözlük deneyimi sunar // @author cermk // @match *://eksisozluk.com/* // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js // @license GPL-3.0-or-later // ==/UserScript== (function() { 'use strict'; var $ = window.jQuery; $(document).ready(function() { // reklam yönetimi $(".under-top-ad, #aside, .bottom-ads, .container, #yeni-reklam, .toast-bottom-wrapper, #banner, a > .sponsored, #sponsored-index-item-first, li > #sponsored-index-item-third, #networkad-inread-video-ad").hide(); $("#content-body").css("width", "98%").css("text-align", "justify"); $("#interstitial-container").hide(); $("#interstitial-container").css("z-index", "-9"); }); })();