RED unread posts history link

Insert link for your posts into the main menu

  1. // ==UserScript==
  2. // @name RED unread posts history link
  3. // @namespace https://greasyfork.org/en/scripts/25722
  4. // @description Insert link for your posts into the main menu
  5. // @include http*://*redacted.ch*
  6. // @version 0.0.1.20151022062917
  7. // ==/UserScript==
  8.  
  9. var userID = document.getElementsByClassName('username')[0].href.split('=')[1];
  10. var target = document.getElementById('userinfo_minor').getElementsByTagName('li')[4];
  11.  
  12. target.innerHTML += ' / <a href="/userhistory.php?action=posts&userid=' + userID + '&showunread=1&group=1\">Posts</a>';