Redirects Imagehost Pages to the hosted Image
< Отзив за Imagehost Redirect
photobucket.com support?
Loving the script. As a noscript user it's a delight! Could you add photobucket.com support though? Here are some similar scripts that have support for it:
https://greasyfork.org/en/scripts/109-handy-image
http://userscripts-mirror.org/scripts/show/430370
In the meanwhile I've just added:
if(true && UrlContains("photobucket.com")) { img = document.querySelector('meta[property="og:image"], meta[name="og:image"]'); img = img ? img.getAttribute('content') : 0;console.log(img); if (img) { location.replace(img); } }
stolen from said scripts and the required @include
I'm only 3 months late with an update!Done.
Влезте, за да публикувате отговор.
photobucket.com support?
Loving the script. As a noscript user it's a delight! Could you add photobucket.com support though? Here are some similar scripts that have support for it:
https://greasyfork.org/en/scripts/109-handy-image
http://userscripts-mirror.org/scripts/show/430370
In the meanwhile I've just added:
stolen from said scripts and the required @include