Lobste.rs Open in New Tab

Opens links to articles and the comment pages in a new tab

  1. // ==UserScript==
  2. // @name Lobste.rs Open in New Tab
  3. // @namespace http://tampermonkey.net/
  4. // @description Opens links to articles and the comment pages in a new tab
  5. // @author Brekkjern
  6. // @match https://www.tampermonkey.net/index.php?version=4.8.41&ext=dhdg&updated=true
  7. // @grant none
  8. // @include https://lobste.rs/*
  9. // @version 0.0.1.20191112103250
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. let links = document.querySelectorAll("a.u-url, span.comments_label > a");
  16. links.forEach(function(element) {
  17. element.target="_blank";
  18. });
  19. })();