Quote Stripper Lite

Strips excessive quotes in PMs

  1. // ==UserScript==
  2. // @name Quote Stripper Lite
  3. // @author xadamxk
  4. // @namespace https://github.com/xadamxk/HF-Scripts
  5. // @version 1.0.2
  6. // @description Strips excessive quotes in PMs
  7. // @require https://code.jquery.com/jquery-3.1.1.js
  8. // @match *hackforums.net/private.php?action=send&pmid=*
  9. // @copyright 2016+
  10. // @iconURL https://raw.githubusercontent.com/xadamxk/HF-Userscripts/master/scripticon.jpg
  11. // ------------------------------ Change Log ----------------------------
  12. // version 1.0.0: Beta Release
  13. // ==/UserScript==
  14. // ------------------------------ Dev Notes -----------------------------
  15. //
  16. // ------------------------------ SETTINGS ------------------------------
  17. //
  18. // ------------------------------ On Page ------------------------------
  19. textarea = $("#message_new");
  20. replace = textarea.val().replace(/^(\[quote=(?:(?!\[quote=)[\s\S]*?))\[quote=[\s\S]+\[\/quote\]\s*([\s\S]+?\[\/quote\]\s*)$/g, "$1$2\n\n");
  21. textarea.val(replace);