您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
skip link check
- // ==UserScript==
- // @name qqmail_jump
- // @version 0.0.1
- // @include https://mail.qq.com/*
- // @include https://en.mail.qq.com/*
- // @description skip link check
- // @grant unsafeWindow
- // @namespace https://greasyfork.org/users/164996a
- // ==/UserScript==
- const o = window.open
- unsafeWindow.open = (u, ...args) => {
- u = new URL(u).searchParams
- if (u.get('action') === 'check_link') {
- u = u.get('url')
- } else {
- u = u.href
- }
- o(u, ...args)
- }