Greasy Fork

Greasy Fork is available in English.

微信中转页面自动跳转

从微信打开某些链接,会进入微信安全中转页面,此脚本实现自动跳转功能

目前为 2021-01-05 提交的版本,查看 最新版本

// ==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;
})();