// ==UserScript== // @name Narou Index scroller // @namespace http://ncode.syosetu.com/ // @version 0.4 // @description 小説家になろうの目次で前後の章に移動するアイコンをつける // @author b2ox // @match https://ncode.syosetu.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var chapters = $('div.index_box > div.chapter_title'); var n = chapters.length; chapters.each(function(i,e){ var nav = $(''); var _up = $('').text('⇧').attr('title','前章へ移動').css('cursor','pointer').click(function(){$('#ct'+(i-1))[0].scrollIntoView();window.scrollBy(0,-20);}); var _down = $('').text('⇩').attr('title','次章へ移動').css('cursor','pointer').click(function(){$('#ct'+(i+1))[0].scrollIntoView();window.scrollBy(0,-20);}); if (i>0) nav.append(_up); if (i