Tumblr Image URL Redirect

Redirects Tumblr Image URLs to the raw version

< 脚本 Tumblr Image URL Redirect 的反馈

评价:好评 - 脚本运行良好

§
发布于:2017-09-30
编辑于:2017-09-30

Found new "h." url bug

I found a new type of url that ends in "_500h.jpg" on this (NSFW) tumblr post.
The script in its current form will redirect to "_rawh.jpg" instead of the intended "_raw.jpg".
While I'm not sure if this issue is widespread enough to warrant a full update, I still thought it prudent to create a simple hotfix:
if(window.location.host.indexOf("media.tumblr.com") > 0) {
window.location = window.location.href.replace(/..\.media\.tumblr\.com/,"media.tumblr.com").replace("_1280h","_raw").replace("_540h","_raw").replace("_500h","_raw").replace("_400h","_raw").replace("_250h","_raw").replace("_100h","_raw").replace("_1280","_raw").replace("_540","_raw").replace("_500","_raw").replace("_400","_raw").replace("_250","_raw").replace("_100","_raw");
}

§
发布于:2017-10-12

I noticed that bug too.

发布留言

登录(不可用)以发布留言。

长期地址
遇到问题?请前往 GitHub 提 Issues。