Redirect fake ElAmigos Repacks websites

Redirects fake ElAmigos Repacks websites to the original one.

Nainstalovat skript?
Skript doporučený autorem

Mohlo by se vám také líbit Redirect fake Fitgirl Repacks websites.

Nainstalovat skript
// ==UserScript==
// @name                   Redirect fake ElAmigos Repacks websites
// @name:fa               انتقال سایت های فیک ال آمیگوس به اصلی
// @description:fa        سایت های ال آمیگوس رو به اصلیش انتقال میده.
// @namespace             bananabread6234
// @author                Black_0_Wolf
// @license               idc
// @version               1.0
// @description           Redirects fake ElAmigos Repacks websites to the original one.
// @match                 *://el-amigos.*/*
// @match                 *://elamigos.*/*
// @match                 *://www.el-amigos.*/*
// @match                 *://www.elamigos.*/*
// @match                 *://www.el-amigo.*/*
// @match                 *://www.elamigo.*/*
// @match                 *://elamigos-games.*/*
// @match                 *://www.elamigos-games.*/*
// @match                 *://www.elamigosedition.*/*
// @match                 *://elamigosedition.*/*
// @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 !== 'elamigos.site') {
        var pageTitle = document.title;
        var separatorIndex = pageTitle.search(/[\[-|]/); // Search for [ or - or |
        var trimmedTitle = separatorIndex !== -1 ? pageTitle.substring(0, separatorIndex) : pageTitle;
        var encodedTitle = encodeURIComponent(trimmedTitle);
        window.location.href = 'https://www.google.com/search?q=site%3Aelamigos.site+' + encodedTitle;
    }
})();