Open External Links in New Tab

Opens all external links in a new tab

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         Open External Links in New Tab
// @version      1.0
// @description  Opens all external links in a new tab
// @match        *://*/*
// @grant        none
// @license      MIT
// @author       Howard D. Lince III
// @supportURL   https://twitter.com/HowardL3
// @namespace    https://github.com/howard3
// ==/UserScript==

(function() {
    'use strict';

    // Get all links in the document
    var links = document.getElementsByTagName('a');

    // Loop through each link
    for (var i = 0; i < links.length; i++) {
        // Check if the link's hostname is different from the current page's hostname
        if (links[i].hostname !== window.location.hostname) {
            // Change the target attribute to _blank
            links[i].target = '_blank';
        }
    }
})();