NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 예의범절제거기 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Sex // @author Smite by Score // @include /^https?://(www\.)?fmkorea\.com.*$/ // @grant none // @copyright 2018, Smite by Score (https://openuserjs.org//users/SmitebyScore) // @license GPL-3.0-or-later // ==/UserScript== (function() { 'use strict'; const textArea = document.querySelectorAll('.simple_wrt textarea')[0] if(textArea) { const inter = setInterval(() => { if(textArea.getAttribute('disabled') != 'disabled') { textArea.setAttribute('placeholder', '') clearInterval(inter) } }, 10) } })();