Greasy Fork is available in English.

HackForums Reputations Link Clickable

Makes links surrounded by either whitespace or dots (periods) clickable.

  1. // ==UserScript==
  2. // @name HackForums Reputations Link Clickable
  3. // @namespace xerotic/clickreplink
  4. // @description Makes links surrounded by either whitespace or dots (periods) clickable.
  5. // @include http://hackforums.net/reputation.php*
  6. // @include http://www.hackforums.net/reputation.php*
  7. // @version 1.0
  8. // ==/UserScript==
  9.  
  10.  
  11. document.getElementById('content').innerHTML=document.getElementById('content').innerHTML.replace(/\shttp\:\/\/(.*?)\s/g, " <a href='http://$1'>http://$1</a> ");
  12. document.getElementById('content').innerHTML=document.getElementById('content').innerHTML.replace(/\.http\:\/\/(.*?)\s/g, ".<a href='http://$1'>http://$1</a> ");
  13. document.getElementById('content').innerHTML=document.getElementById('content').innerHTML.replace(/\shttp\:\/\/(.*?)\./g, " <a href='http://$1'>http://$1</a>.");
  14. document.getElementById('content').innerHTML=document.getElementById('content').innerHTML.replace(/\.http\:\/\/(.*?)\./g, ".<a href='http://$1'>http://$1</a>.");