>>626
一応、「Inline Thumbnail」の「tumblr」該当らしき部分はこんな感じです

tumblr: {
regex: /^http:\/\/([\w\-]+\.tumblr\.com)\/post\/(\d+)/,
resolv: function(matched, complete) {
callWebApi(EXT_SERV_ENDS.tumblr, { base_hostname: matched[1], post_id: matched[2] }, function(data) {
complete(data && data.url, true);
});
}
},
tumblrs: {
regex: /^http:\/\/(?:tumblr\.com|tmblr\.co)\/[\w\-]+/,
resolv: function(matched, complete) {
expandShortUrl(matched[0], function(longUrl) {
var regex = /^http:\/\/((?:\.?[\w\-]+)+)\/post\/(\d+)/;
if (regex.test(longUrl)) {
THUMB_RESOLVERS.tumblr.resolv(longUrl.match(regex), complete);
} else {
complete();
}
});
}
},