Opens all external links in a new tab
目前為
// ==UserScript==
// @name Open External Links in New Tab
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Opens all external links in a new tab
// @author YourName
// @match *://*/*
// @grant none
// ==/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';
}
}
})();