AgileZen Improvements

Fixes janky rendering with story detail links and opens links to other sites in a new tab.

  1. // ==UserScript==
  2. // @name AgileZen Improvements
  3. // @version 1.1
  4. // @description Fixes janky rendering with story detail links and opens links to other sites in a new tab.
  5. // @match https://agilezen.com/*
  6. // @require http://code.jquery.com/jquery-latest.js
  7. // @namespace https://greasyfork.org/users/1858
  8. // ==/UserScript==
  9.  
  10. $("head").append("<style>body.board .story .story-header .story-ref-number a { padding-right:16px; }</style>");
  11.  
  12. $(document).on('click', "a[href^='http']:not([href*='"+location.hostname.replace("www.","")+"'])", function(event) {
  13. event.preventDefault();
  14. window.open(event.target.href, "_blank");
  15. });