这里输入描述
// ==UserScript== // @name VNDB对条件文本完全显示,而不显示...省略 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description 这里输入描述 // @author aotmd // @match https://vndb.org/* // @noframes // @license MIT // @grant none // @run-at document-body // ==/UserScript== (function () { let styleElement = document.createElement('style'); styleElement["type"] = 'text/css'; document.getElementsByTagName('head')[0].appendChild(styleElement); styleElement.appendChild(document.createTextNode(` .xsearch .elm_dd_input { width: auto; } `)); })();