Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // ==UserScript==
  2. // @name imgur-GIF to GIFV
  3. // @namespace https://greasyfork.org/users/9009
  4. // @description Turn imgur GIF links into GIFV.
  5. // @version 1.01
  6. // @include http://imgur.com/*
  7. // @include https://imgur.com/*
  8. // @include https://*.imgur.com/*
  9. // @include http://*.imgur.com/*
  10. // @grant none
  11. // @run-at document-start
  12. // ==/UserScript==
  13.  
  14. if (window.location.href.match(/imgur\.com\/[A-Za-z0-9]+\.gif$/)) {
  15. window.location.replace (window.location.href + "v");
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement