Random Button for Derpibooru

Gives a hotkey for loading a random image on Derpibooru (Ctrl-M)

  1. // ==UserScript==
  2. // @name Random Button for Derpibooru
  3. // @namespace http://fillydelphiaradio.net/
  4. // @version 0.1
  5. // @description Gives a hotkey for loading a random image on Derpibooru (Ctrl-M)
  6. // @author Set-L
  7. // @match https://derpibooru.org/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.onkeyup = function(e) {
  14. if(e.ctrlKey && e.which == 77) {
  15. window.location.replace('https://derpibooru.org/search?q=%2A&random_image=y');
  16. }
  17. }
  18. // Your code here...
  19. })();