您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
链接强制在新建标签中打开 Open a URL in a new tab
当前为
// ==UserScript== // @name 新标签打开链接 // @author daysv // @namespace http://daysv.github.com // @description 链接强制在新建标签中打开 Open a URL in a new tab // @version 0.1.0 // @include * // @grant none // ==/UserScript== (function(document){ [].slice.call(document.getElementsByTagName('a')).forEach(function(aTag){ aTag.setAttribute('target','_blank'); }) })(document)