Skip to content

Instantly share code, notes, and snippets.

@cxx
Created June 29, 2011 18:43
Show Gist options
  • Save cxx/1054551 to your computer and use it in GitHub Desktop.
Save cxx/1054551 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name pixiv Big Image
// @namespace http://twitter.com/cxx
// @include http://www.pixiv.net/member_illust.php?mode=medium&illust_id=*
// @version 1.0.0
// ==/UserScript==
var img = document.querySelector('.works_display > a[href*="big"] > img');
if (img)
img.src = img.src.replace('_m.', '.');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment