Ubuntu-it Quote Fixer

Bugfix for ubuntu-it forum quotes

当前为 2015-02-11 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Ubuntu-it Quote Fixer
  3. // @namespace forum.ubuntu-it.org
  4. // @include http://forum.ubuntu-it.org/*
  5. // @version 1.0
  6. // @description Bugfix for ubuntu-it forum quotes
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. var $msg = $('#message');
  11. $msg.val( $msg.val().replace(/\[quote="([^ ]+) ([^\]]+\]).*\[\/url\]"\]/g,'[quote="$2$1[/url]"]') );