どうにも"j" "k" より "n" "p"が好きなので、

思い切って変更してみた。

LDRize

LDRizeは至って簡単で、

{FireFox_Profiles}\gm_scripts\ldrize.user.js

var KEYBIND = {
	'j'   : 'Next',
	'k'   : 'Prev',
	'p'   : 'Pin',
	'l'   : 'List',
	'f'   : 'Focus',
	'v'   : 'View',
	'o'   : 'Open',
	'i'   : 'Iframe',
	's'   : 'Siteinfo',
}

var KEYBIND = {
	'n'   : 'Next',
	'p'   : 'Prev',
	'm'   : 'Pin',
	'l'   : 'List',
	'f'   : 'Focus',
	'v'   : 'View',
	'o'   : 'Open',
	'i'   : 'Iframe',
	's'   : 'Siteinfo',
}

に変更でOK。((上手く行っているからOK何でしょう(ぉ))

LDR

こっちは、新たにGreaseMonkeyを作成。
最速インターフェース研究会 :: livedoor ReaderのショートカットキーをカスタマイズするGreasemonkeyスクリプトを参考にさせていただいて、
ldr_keyhack_clear.user.jsを元に、
こんな感じ。

(function(){
	var w = unsafeWindow;
	var _onload = w.onload;

	var onload = function(){with(w){
        //remove
        Keybind.remove("j");
		Keybind.remove("k");
		Keybind.remove("p");

        //add
		Keybind.add("n",Control.go_next);
		Keybind.add("p",Control.go_prev);

		Keybind.add('m', function(){
			var item = get_active_item(true);
			if (!item) return;
			GM_openInTab(item.link);
			Control.go_next();
		})
		
	}}
	w.onload = function(){
		_onload();
		onload();
	}
})();

とりあえず、上手く行っているのでOK〜♪