Greasy Fork

Greasy Fork is available in English.

display the image of tumblr in HD revolution

直接显示tumblr的图片为高清版

目前为 2015-04-15 提交的版本,查看 最新版本

// ==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;
})