Greasy Fork is available in English.

inoreader scroll bug fix

Fixes scrolling issues due to adblock on inoreader.com

// ==UserScript==
// @name        inoreader scroll bug fix
// @namespace   http://twitter.com/GDorn
// @description Fixes scrolling issues due to adblock on inoreader.com
// @include     http://www.inoreader.com/*
// @include     https://www.inoreader.com/*
// @grant       none
// @version     1
// ==/UserScript==

$(document).ready(function(){
  $('#reader_pane').keyup(
    function(event){
      if (event.which == 78 || event.which == 80){
        setTimeout(function(){$(".article_current").get(0).scrollIntoView();}, 250);      
      } 
    }
  )
 }
);