您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
V2EX助手,将v2ex.com的帖子超链接改为新窗口打开
当前为
// ==UserScript== // @name V2EX助手 // @namespace http://zhihaofans.com // @version 0.3.0 // @description V2EX助手,将v2ex.com的帖子超链接改为新窗口打开 // @author zhihaofans // @match http*://www.v2ex.com/* // @grant none // @icon https://www.v2ex.com/static/img/icon_rayps_64.png // ==/UserScript== $(document).ready(function(){ var nowurl=location.pathname; if(nowurl=="/" || nowurl.substr(0,6)=="/?tab=" || nowurl.substr(0,4)=="/go/" ){ $("span.item_title a").attr("target","_blank"); } if(nowurl.substr(0,3)=="/t/"){ $("a[rel=nofollow]").attr("target","_blank"); } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址