CS_WH Editor

Change The Character Sheet's Width and Height

  1. // ==UserScript==
  2. // @name CS_WH Editor
  3. // @namespace http://devs.forumvi.com/
  4. // @version 0.9
  5. // @description Change The Character Sheet's Width and Height
  6. // @copyright 2014+, NCat
  7. // @icon http://png-4.findicons.com/files/icons/2776/android_icons/48/ic_size_up.png
  8. // @include http://*/admin/index.forum*
  9. // @include *part=modules*
  10. // @include *sub=roleplay*
  11. // @include *mode=management*
  12. // @include *mod=edit*
  13. // @match http://*/admin/index.forum*
  14. // @match *part=modules*
  15. // @match *sub=roleplay*
  16. // @match *mode=management*
  17. // @match *mod=edit*
  18. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
  19. // @run-at document-end
  20. // @grant none
  21. // ==/UserScript==
  22.  
  23. $(".forumline .post:not([name='avatarurl'])").replaceWith(function(){
  24. return '<textarea class="post" name="' + this.name + '" style="with:98%;height:200px">' + this.value + '</textarea>';
  25. });