您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动跳过QQ网址拦截 (额外支持QQ「已停止访问此链接」与腾讯文档「网站含有危险信息」页面),同时保护隐私、移除QQ号等信息(参数), F_U_C_K
// ==UserScript== // @name 自动跳过QQ网址拦截 (额外支持了更多页面) // @version 1.0.2 // @description 自动跳过QQ网址拦截 (额外支持QQ「已停止访问此链接」与腾讯文档「网站含有危险信息」页面),同时保护隐私、移除QQ号等信息(参数), F_U_C_K // @author Jack.Chan ([email protected]), GalvinGao // @namespace http://github.com/GalvinGao // @match *://c.pc.qq.com/* // @match *://docs.qq.com/* // @grant none // @license MIT // @run-at document-start // ==/UserScript== (function() { 'use strict'; function getParams(name){ var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return decodeURIComponent(r[2]); return ''; } var url = (window.location.pathname === "/ios.html" || window.location.pathname === "/scenario/link.html") ? getParams("url") : getParams('pfurl'); if (url) { window.location.replace(url); } })();