QQ URL Unblocker

Understandable but f**k off (for QQ PC and QQNT)

当前为 2023-06-06 提交的版本,查看 最新版本

// ==UserScript==
// @name         QQ URL Unblocker
// @version      0.1
// @description  Understandable but f**k off (for QQ PC and QQNT)
// @author       Whoever
// @match        https://c.pc.qq.com/middlem.html*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=qq.com
// @grant        none
// @license      MIT
// @namespace https://greasyfork.org/users/134691
// ==/UserScript==

(function() {
    'use strict';
    const url = document.getElementById("url");
    if(!!url){
        window.location.replace(url.textContent);
    }
})();