Sankaku Beta no image fix

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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;
    }
})();