您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Opens all external links in a new tab
- // ==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';
- }
- }
- })();