微信屏蔽链接跳转

从微信中点开的被屏蔽链接直接跳转正常页面

当前为 2020-09-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         微信屏蔽链接跳转
// @namespace    https://github.com/FireSoil
// @version      1.0
// @description  从微信中点开的被屏蔽链接直接跳转正常页面
// @author       FireSoil
// @match        *://weixin110.qq.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var getURLParameter = function(name){
        console.log(document.getElementsByClassName('weui-msg__desc'));
        return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) || [null, ''])[1].replace(/\+/g, '%20')) || null;
    };
    var url = getURLParameter('url');
    location.href = url;
})();