Skip to content

Instantly share code, notes, and snippets.

@darkconsole
Last active June 16, 2019 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darkconsole/9ee1733ddf43e9397e3134b53db70b45 to your computer and use it in GitHub Desktop.
Save darkconsole/9ee1733ddf43e9397e3134b53db70b45 to your computer and use it in GitHub Desktop.
Custom Style Scripts script for magic image board surfing
switch(document.domain) {
case 'gelbooru.com':
if(document.querySelector('#image') !== null)
AutoImageGelbooru();
break;
}
function AutoImageGelbooru() {
if(document.querySelector('#resized_notice a:first-of-type') !== null)
document.querySelector('#resized_notice a:first-of-type').click();
setTimeout(function(){
location.href=document.querySelector('#image').src;
return;
},750);
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment