您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
V2EX链接移除楼层标签锚(避免干扰判断是否已经加入收藏夹)
// ==UserScript== // @name V2EX链接移除楼层标签锚 // @namespace http://zhangbohun.github.io/ // @version 0.3 // @description V2EX链接移除楼层标签锚(避免干扰判断是否已经加入收藏夹) // @author zhangbohun // @match *://*.v2ex.com/* // @grant none // ==/UserScript== (function () { 'use strict'; document.querySelectorAll('a').forEach(function (element) { if (element.href.indexOf('v2ex.com/t/') != -1) { element.href = element.href.split('#reply')[0] } }); })();