Skip to content

Instantly share code, notes, and snippets.

@5l
Last active December 9, 2015 12:00
Show Gist options
  • Save 5l/c56ff5b319057117499c to your computer and use it in GitHub Desktop.
Save 5l/c56ff5b319057117499c to your computer and use it in GitHub Desktop.
Change night mode in "gakkougurashi.com"
// Chrome console
$("body").removeClass('morning').addClass('night');url="core_sys/images/main/top/main_img_ni.jpg";a=new Image();a.onload=function(){$("#main_img").children("img").attr({'src':url});};a.src=url;
// URL
javascript:(function(){$("body").removeClass('morning').addClass('night');url="core_sys/images/main/top/main_img_ni.jpg";a=new Image();a.onload=function(){$("#main_img").children("img").attr({'src':url});};a.src=url;})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment