-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShurHotKey.min.user.js
More file actions
13 lines (12 loc) · 1.94 KB
/
Copy pathShurHotKey.min.user.js
File metadata and controls
13 lines (12 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
// ==UserScript==
// @name ShurHotKey
// @version 0.7
// @description navegación rápida entre subforos y post con más de una página
// @author Karucida
// @include http://www.forocoches.com/foro/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js
// @grant none
// @downloadURL https://raw.githubusercontent.com/Karucida/ShurHotKey/master/ShurHotKey.min.user.js
// @updateURL https://raw.githubusercontent.com/Karucida/ShurHotKey/master/ShurHotKey.meta.js
// ==/UserScript==
$(document).ready(function(){var e=[];e.general="http://www.forocoches.com/foro/forumdisplay.php?f=2",e.informatica="http://www.forocoches.com/foro/forumdisplay.php?f=17",e.fotografia="http://www.forocoches.com/foro/forumdisplay.php?f=82",e.empleo="http://www.forocoches.com/foro/forumdisplay.php?f=23",e.taxis="http://www.forocoches.com/foro/forumdisplay.php?f=64",e.viajes="http://www.forocoches.com/foro/forumdisplay.php?f=27",e.kdd="http://www.forocoches.com/foro/forumdisplay.php?f=15",$(document).keydown(function(){if($("textarea").is(":focus")||(">>"==$("a[rel='next']").text()||"<<"==$("a[rel='prev']").text())&&(39==event.which&&(">>"==$("a[rel='next']").text()?location.href=$("a[rel='next']").prop("href"):"« Primer« Primer"==$("a[rel=start]").text()?location.href=$("a[rel='start']").prop("href"):location.href=$("a[title^='Mostrar Resultados del 1']").prop("href")),37==event.which&&("<<"==$("a[rel='prev']").text()?location.href=$("a[rel='prev']").prop("href"):"Último »Último »"==$("a[title^=Última]").text()?location.href=$("a[title^=Última]").prop("href"):location.href=$("a[title^='Mostrar']:last").prop("href"))),event.altKey)switch(event.which){case 71:location.href=e.general;break;case 73:location.href=e.informatica;break;case 70:location.href=e.fotografia;break;case 66:location.href=e.empleo;break;case 84:location.href=e.taxis;break;case 86:location.href=e.viajes;break;case 81:location.href=e.kdd}})});