Sankaku Beta no image fix

Fixes the issue of images not displaying when opening posts on another tab.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Sankaku Beta no image fix
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Fixes the issue of images not displaying when opening posts on another tab.
// @author       Pwalpac
// @match        https://beta.sankakucomplex.com/post/show/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    'esversion: 6';
    // The issue happens when you open a post on a new tab and you are using tag search.
    // To fix it, it simply redirects the page to the version without the tags (removing everything after the "?" from the url).
    const currentUrl = window.location.href;
    const questionMarkIndex = currentUrl.indexOf("?");

    if (questionMarkIndex !== -1){
        const urlWithoutTags = currentUrl.substring(0, questionMarkIndex);
        window.location.href = urlWithoutTags;
    }
})();