Understandable but f**k off (for QQ PC and QQNT)
当前为
// ==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);
}
})();