Facepunch frontpage double column

Brings back the double column style

当前为 2015-01-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Facepunch frontpage double column
  3. // @version 0.1.1
  4. // @description Brings back the double column style
  5. // @author DrTaxi - Reagy
  6. // @match http://facepunch.com/
  7. // @match http://facepunch.com/forum.php
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/8353
  10. // ==/UserScript==
  11.  
  12. $(function(){
  13. $(".forums").first().next().nextAll().appendTo($("<td valign='top' class='FrontPageForums'></td>").insertAfter(".FrontPageForums"));
  14. });