.ru destroyer

This script helps you with browsing the internet

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

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

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!)

Advertisement:

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!)

Advertisement:

// ==UserScript==
// @name        .ru destroyer
// @description This script helps you with browsing the internet
// @author       546pvp
// @version      0.1.1
// @license      MIT
// @match        *://*.ru/*
// @namespace https://greasyfork.org/users/741384
// ==/UserScript==
var blockedDomains = ['ik-ptz.ru', 'proonline.ru', 'fantasticfilms.ru', 'tanterm.ru', 'leonardogift.ru', 'hurawatch.ru', 'bannortim-qimulta.ru', 'daliachuuaroyalys.ru', 'bannortim.ru', 'uaroyalysdaliachu.ru', 'uaroyalys.ru', 'http://6rota.costav.edusite.ru', 'http://89186304545.ru', 'http://a0152829.xsph.ru', 'http://mobile.beliar.ru', 'http://mogadk.ru', 'http://momoselok.ru', 'http://montazh5.ru', 'http://mospi.ru', 'http://mossafes.ru', 'http://moswomen.ru', 'http://moymir58.ru', 'http://mvp-sp11.ru', 'http://mw077.ru', 'http://nailzz.ru', 'http://nasosy76.ru', 'http://natalija.ru', 'http://natalilife.ru']
var hostname = location.host
console.warn(hostname)
 if(blockedDomains.includes(hostname)) {
    document.write(`
    <h1 align='center' style="font-family:'Helvetica'">Website ${hostname} can be malicious</h1>
    <p align='center' style="font-family:'Helvetica'">This message was autogenerated because you opened '.ru' domain</p>
    <footer><p id='credit' align='left' style="font-family:'Helvetica'">Script by <a href='https://greasyfork.org/users/741384-546pvp'>546pvp</p></footer>
    `)
}