🏠 Home 

VNDB对条件文本完全显示,而不显示...省略

这里输入描述

  1. // ==UserScript==
  2. // @name VNDB对条件文本完全显示,而不显示...省略
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.0
  5. // @description 这里输入描述
  6. // @author aotmd
  7. // @match https://vndb.org/*
  8. // @noframes
  9. // @license MIT
  10. // @grant none
  11. // @run-at document-body
  12. // ==/UserScript==
  13. (function () {
  14. let styleElement = document.createElement('style');
  15. styleElement["type"] = 'text/css';
  16. document.getElementsByTagName('head')[0].appendChild(styleElement);
  17. styleElement.appendChild(document.createTextNode(`
  18. .xsearch .elm_dd_input {
  19. width: auto;
  20. }
  21. `));
  22. })();