NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name MOON CLAN FIGHT EXTENSION // @namespace http://tampermonkey.net/ // @version 0.5 // @description Убираем раздражающие вещи в боёвке вара // @author https://vk.com/sooxl Жабродышащее 1535254 (Сухарик) // @match https://catwar.su/cw3/ // @icon https://www.google.com/s2/favicons?sz=64&domain=catwar.su // @license MIT; https://opensource.org/licenses/MIT // @grant none // ==/UserScript== /* ФУНКЦИОНАЛ - предотвращает случайное нажатие альта, пробела, таба */ function canStart() { return (Object.keys($('.d')).length > 2); } (function() { 'use strict'; setTimeout(function poll () { if (canStart()) { start(); } else { setTimeout(poll, 1000); } }, 1000) })(); function start() { window.addEventListener('keydown', function(e) { if (e.altKey || e.keyCode === 9 || (e.keyCode===32 && e.target.id!=="text")) { e.preventDefault(); } }); }