Imgur - Load albums in fullscreen slideshow

Loads Imgur albums as a fullscreen slideshow automatically.

  1. // ==UserScript==
  2. // @name Imgur - Load albums in fullscreen slideshow
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Loads Imgur albums as a fullscreen slideshow automatically.
  6. // @author Andrivious
  7. // @match http://imgur.com/a/*
  8. // @grant none
  9. // ==/UserScript==
  10. /* jshint -W097 */
  11. 'use strict';
  12.  
  13. var url = window.location.href;
  14.  
  15. var url_grid_album_matches = url.match(/^http(s)?:\/\/imgur.com\/a\/[^\/]+\/layout\/grid.*/);
  16. var url_default_album_matches = url.match(/^http(s)?:\/\/imgur.com\/a\/[^\/]+/);
  17.  
  18. if (!url_grid_album_matches) {
  19. window.location.assign(url_default_album_matches[0] + '/layout/grid');
  20. }
  21. else {
  22. document.getElementsByClassName('post')[0].click();
  23. }