Redirect fake Fitgirl Repacks websites

Redirects fake Fitgirl Repacks websites to the original one.

התקן את הסקריפט?
סקריפטים מומלצים של יוצר זה

אולי תאהב גם את Redirect fake ElAmigos Repacks websites.

התקן את הסקריפט
// ==UserScript==
// @name                   Redirect fake Fitgirl Repacks websites
// @name:fa               انتقال سایت های فیک فیت گرل به اصلی
// @description:fa        سایت های فیک فیت گرل رو به اصلیش انتقال میده.
// @namespace             bananabread2315467
// @author                Black_0_Wolf
// @license               idc
// @version               1.1
// @description           Redirects fake Fitgirl Repacks websites to the original one.
// @match                 *://fitgirl-repacks.*/*
// @match                 *://fitgirlrepacks.*/*
// @match                 *://www.fitgirl-repacks.*/*
// @match                 *://www.fitgirlrepacks.*/*
// @match                 *://www.fitgirl-repack.*/*
// @match                 *://www.fitgirlrepack.*/*
// @match                 *://fitgirl-repacks.site/*
// @grant                 none
// @icon                  https://static.wikia.nocookie.net/metro2033/images/9/99/Faction_Logo_Order.png/revision/latest/scale-to-width-down/120?cb=20191017090524
// ==/UserScript==

(function() {
    'use strict';

    if (window.location.hostname !== 'fitgirl-repacks.site') {
        var pageTitle = document.title;
        var separatorIndex = pageTitle.indexOf('–');
        var trimmedTitle = separatorIndex !== -1 ? pageTitle.substring(0, separatorIndex) : pageTitle;
        var encodedTitle = encodeURIComponent(trimmedTitle);
        window.location.href = 'https://fitgirl-repacks.site/?s=' + encodedTitle;
    }
})();