// ==UserScript==
// @name 清华教参 HTML5
// @namespace https://dev.oriki.moe
// @version 1.0
// @description Make THU reserve lib HTML5 again!
// @author lwpie
// @match http://reserves.lib.tsinghua.edu.cn/Search/BookDetail?bookId=*
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
$('p > a').each(function () {
this.href = this.href.replace('index.html', 'HTML5/index.html');
})
})();