// ==UserScript== // @name imgur redirector // @version 0.1 // @description Redirige imgur a la original que se muestra en Twitter. // @author ArtEze // @match https://imgur.com/* // @grant none // @namespace https://greasyfork.org/users/163524 // @downloadURL none // ==/UserScript== fetch("https://imgur.com/a/"+location.pathname.split("/").slice(-1)[0]) .then(function(x){x.text();}) .then(function(x){ var html = document.createElement("html"); html.innerHTML = x; location.href=html.querySelector("meta[name='twitter:image']").content; });