Hacker News - Open in tabs

Open links in new tabs

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Hacker News - Open in tabs
// @namespace    Stout
// @version      0.1
// @description  Open links in new tabs
// @author       Stout
// @license      MIT
// @match        https://news.ycombinator.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=news.ycombinator.com
// ==/UserScript==

function rewriteAnchorElements(path) {
    var anchorElements = document.evaluate(path,
                                           document,
                                           null,
                                           XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE);

    for (let i = 0; i < anchorElements.snapshotLength; ++i)
    {
        anchorElements.snapshotItem(i).target = '_blank';
    }
}

(function() {
    'use strict';

    rewriteAnchorElements("//table[@id='hnmain']//td[@class='title']/span[@class='titleline']/a");
    rewriteAnchorElements("//table[@id='hnmain']//td[@class='subtext']/span[@class='subline']/a[starts-with(@href, 'item?')]");
})();