可以用油猴脚本给所有 a 标签加上 target="_blank" ``` // ==UserScript== // @name V2EX 新窗口打开 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match /* // @icon https://www.google.com/s2/favicons?sz=64&domain= // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... document.querySelectorAll('a').forEach(function(link) { link.setAttribute('target', '_blank'); }); })(); ```