Redirects to high-res images on gallery sites, skipping past descriptions and comments
< Eza's Image Glutton 피드백
sankaku has been borked for a while https://forum.sankakucomplex.com/t/404s-loading-issues-etc-compilation-of-server-issues/27545I fixed it through your addon. thanks you.before:case 'chan.sankakucomplex.com': image_url = document.querySelector( 'a#highres').href; simple_redirect = true; break; after:case 'chan.sankakucomplex.com': image_url = document.querySelector( 'a#highres').href; image_url = image_url.replace( 'v.sankaku', 's.sankaku' ); simple_redirect = true; break;
댓글을 남기려면 로그인하세요.
sankaku has been borked for a while https://forum.sankakucomplex.com/t/404s-loading-issues-etc-compilation-of-server-issues/27545
I fixed it through your addon. thanks you.
before:
case 'chan.sankakucomplex.com': image_url = document.querySelector( 'a#highres').href; simple_redirect = true; break;
after:
case 'chan.sankakucomplex.com': image_url = document.querySelector( 'a#highres').href; image_url = image_url.replace( 'v.sankaku', 's.sankaku' ); simple_redirect = true; break;