ehentai翻頁

ehentai左右翻页

  1. // ==UserScript==
  2. // @name ehentai翻頁
  3. // @namespace http://somd5.com/
  4. // @version 0.1
  5. // @description ehentai左右翻页
  6. // @author C0de
  7. // @match http://g.e-hentai.org/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. })();
  16. document.onkeydown=function(b){
  17. b=(b)?b:window.event;
  18. var sn=document.getElementsByClassName("sn")[0];
  19. if(b.keyCode=="37"){
  20. if(sn){
  21. window.location.href=sn.getElementsByTagName("a")[1].href;
  22. }
  23. }else if(b.keyCode=="39"){
  24. if(sn){
  25. window.location.href=sn.getElementsByTagName("a")[2].href;
  26. }
  27. }
  28. };