NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Highrise Page Numbers
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://wodc.highrisehq.com/parties?*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var sortingDiv = document.getElementById('sorting_filtering');
var count_total = parseInt(document.getElementsByClassName('count total')[0].innerHTML.replace(',', ''));
var pageDiv = document.createElement('div');
pageDiv.style.cssText = 'min-height: 20px; width: 100%; overflow: hidden; display: inline';
var page_count = Math.ceil(count_total / 50);
for (var i = 0; i < page_count; i++)
{
var link = document.createElement('a');
link.style.cssText = 'border: solid 1px gray; padding: 1px 3px; margin: 3px 5px; display: inline-block; border-radius: 3px;';
var link_num = i * 50;
link.innerHTML = i;
link.href = 'https://wodc.highrisehq.com/parties?kind=parties&n=' + link_num;
pageDiv.appendChild(link);
}
sortingDiv.appendChild(pageDiv);
})();