Greasy Fork is available in English.
从微信打开某些链接,会进入微信安全中转页面,此脚本实现自动跳转功能
当前为
// ==UserScript==
// @name 微信中转页面自动跳转
// @namespace dhjesus
// @version 0.0.1
// @description 从微信打开某些链接,会进入微信安全中转页面,此脚本实现自动跳转功能
// @author DHJesus
// @include *://weixin110.qq.com/*
// @grant none
// @compatible Chrome
// @compatible Firefox
// @compatible Edge
// @compatible Safari
// @compatible Opera
// @compatible UC
// ==/UserScript==
(function () {
window.location.href = document.getElementsByClassName('weui-msg__desc')[0].textContent;
})();