motemen (owner)

Revisions

gist: 133228 Download_button fork
public
Public Clone URL: git://gist.github.com/133228.git
Embed All Files: show embed
model.Tumblr.pixivUrl.js #
1
2
3
4
5
6
7
8
addBefore(Tumblr, 'post', function (ps) {
    if (ps.itemUrl.match(/^http:\/\/img\d+\.pixiv\.net\/img\/([^\/]+?)\/\d+_m\.\w+$/)) {
        ps.itemUrl = ps.itemUrl.replace(/_m(\.\w+)$/, '$1');
    }
    if (ps.pageUrl.match(/^http:\/\/www\.pixiv\.net\/member_illust\.php\?mode=big&illust_id=\d+$/)) {
        ps.pageUrl = ps.pageUrl.replace(/mode=big/, 'mode=medium');
    }
});