Advertisement
AyrA

Imgur Auto Gallery Expander

Mar 15th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Imgur Gallery Expander
  3. // @namespace    [NAMEHASH]
  4. // @version      0.1
  5. // @description  Automatically expands Galleries with more than 10 images
  6. // @author       /u/AyrA_ch
  7. // @match        https://imgur.com/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12.     'use strict';
  13.     var e = document.querySelector(".post-loadall");
  14.     if (e) {
  15.         e.click();
  16.     }
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement