hwm_shestidyryj

Шестидырый молдован

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name           hwm_shestidyryj
// @namespace      https://greasyfork.org/users/12821
// @description    Шестидырый молдован
// @author         Kleshnerukij
// @version        1.00
// @include        http://www.heroeswm.ru/search.php*
// @include        http://qrator.heroeswm.ru/search.php*
// @include        http://178.248.235.15/search.php*
// @include        http://www.lordswm.com/search.php*
// @include        https://www.heroeswm.ru/search.php*
// @include        https://qrator.heroeswm.ru/search.php*
// @include        https://178.248.235.15/search.php*
// @include        https://www.lordswm.com/search.php*
// ==/UserScript==

(function () {

var search_input = document.getElementsByTagName('form')[0].getElementsByTagName('input')[0];
var search_button = document.getElementsByTagName('form')[0].getElementsByTagName('input')[1];

document.addEventListener(`keydown`, event => {
  if (event.keyCode == 13) {
    if(search_input.value == 'Шестидырый' || search_input.value == 'Шестидырочный' || search_input.value == 'Шестидырчатый' || search_input.value == 'Дырявый') {
        search_input.value = 'Ooo-ooO';
    }
    console.log(`йо`); // some code
  }
}, false);

search_button.addEventListener(`mouseup`, event => {
    if(search_input.value == 'Шестидырый' || search_input.value == 'Шестидырочный' || search_input.value == 'Шестидырчатый' || search_input.value == 'Дырявый') {
        search_input.value = 'Ooo-ooO';
    }
    console.log(`йо`); // some code
}, false);

})();