// ==UserScript==
// @name Calendar navigation
// @namespace TVMaze
// @version 1.1
// @description Navigation buttons
// @author cicelle
// @include http://www.tvmaze.com/calendar*
// @include https://www.tvmaze.com/calendar*
// @downloadURL https://raw.githubusercontent.com/cicelle/tvmaze/master/calendar-navigation.user.js
// @license The MIT License (MIT)
// ==/UserScript==
(function() {
'use strict';
$('head').append(``);
/****************************
add another calendar navigation
*****************************/
if($('#calendar-header').length){
let calfooter = '';
$('#calendar-wrap .card').append(calfooter)
}
})();