KG_RmDisabledAttribute

Unblock private chat

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         KG_RmDisabledAttribute
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  Unblock private chat
// @author       You
// @match        http://klavogonki.ru/gamelist/
// @match        https://klavogonki.ru/gamelist/
// @grant        none
// ==/UserScript==

setTimeout (function() {
    'use strict';

   document.querySelector('.text').removeAttribute("disabled");
   document.querySelector('.send').removeAttribute("disabled");
   document.querySelector('.text').value = "";
}, 5000)();