Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name imgur-GIF to GIFV
- // @namespace https://greasyfork.org/users/9009
- // @description Turn imgur GIF links into GIFV.
- // @version 1.01
- // @include http://imgur.com/*
- // @include https://imgur.com/*
- // @include https://*.imgur.com/*
- // @include http://*.imgur.com/*
- // @grant none
- // @run-at document-start
- // ==/UserScript==
- if (window.location.href.match(/imgur\.com\/[A-Za-z0-9]+\.gif$/)) {
- window.location.replace (window.location.href + "v");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement