Sankaku Beta no image fix

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

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