Advertisement
Guest User

Untitled

a guest
Feb 20th, 2025
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. // ==UserScript==
  2. // @name E621 Swimmer
  3. // @description Navigate e621's pools with arrow keys
  4. // @include http*://e621.net/posts/*
  5. // @grant none
  6. // ==/UserScript==
  7.  
  8. window.onload = function () {
  9. if (document.querySelector('.pool-category-series')) {
  10. let poolNavController = document.querySelector('.pool-category-series')
  11. var prev = poolNavController.querySelector('a.nav-link.prev')
  12. var next = poolNavController.querySelector('a.nav-link.next')
  13. document.addEventListener('keydown', function (e) {
  14. if (e.keyCode === 37 && prev.href && e.ctrlKey) {
  15. window.location = prev.href;
  16. }
  17. else if (e.keyCode === 39 && next.href && e.ctrlKey) {
  18. window.location = next.href;
  19. }
  20. }, false);
  21. }
  22. }()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement