adds context menu button
// ==UserScript==
// @name Book Hall
// @namespace http://tampermonkey.net/
// @version 0.3
// @description adds context menu button
// @license MIT
// @author Me
// @match http://*/*
// @include *
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant GM_openInTab
// @run-at context-menu
// ==/UserScript==
(function() {
'use strict';
GM_openInTab("https://topup.chch.ox.ac.uk/BlockBook.aspx?autobook=informal");
})();