Greasy Fork is available in English.
直接显示tumblr的图片为高清版
当前为
// ==UserScript==
// @name display the image of tumblr in HD revolution
// @description 直接显示tumblr的图片为高清版
// @version 0.1
// @include http://*.tumblr.com/*
// @include https://*.tumblr.com/*
// @author yechenyin
// @namespace http://greasyfork.icu/users/3586-yechenyin
// @require https://code.jquery.com/jquery-1.11.2.min.js
// ==/UserScript==
$("a>img").each(function() {
if (this.src != this.parentNode.href && this.parentNode.href.match(/.+_\d+\.(jpe?g|gif|png|bmp)$/))
this.src = this.parentNode.href;
})