NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name inoreader.com adblock // @description Remove inoreader.com's annoying ads. // @version 1.0 // @grant none // @include *.inoreader.com* // ==/UserScript== // set cookie to hide adblock baited banner document.cookie = 'consents_bbb=1;expires=2147483647'; ;(function ($, document, window, undefined) { // runs immediately $(function () { // remove right hand upgrade button and realign related elements $('#sb_rp_upgrade').hide(); $('#sb_rp_gear').css('right', '0px'); $('#sb_rp_notifications').css('right', '40px'); $('#sb_rp_tools').css('right', '80px'); }); }) (jQuery, document, window);