您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Deletes VK.com url redirects
// ==UserScript== // @name vk.com_del_redir // @namespace https://gf.qytechs.cn/ // @version 1.0 // @description Deletes VK.com url redirects // @author AndShy // @match http://vk.com/* // @match https://vk.com/* // @license GPL-3.0 // @homepageURL https://gf.qytechs.cn/en/users/384289-andshy // @run-at document-end // @grant none // ==/UserScript== (function() { 'use strict'; document.onmouseover = handler; function handler(event) { var evt = event.target if (evt) { if (evt.tagName.includes('A')) { if (evt.href){ var link = decodeURIComponent(evt.href) evt.href = link.replace(/^(?:http.?.*\?to\=)(.*?)(?:\&.*)?$/,'$1') } } } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址