Greasy Fork is available in English.
delete qrcode tips
当前为
// ==UserScript==
// @name 去除qq登录扫码提示
// @namespace zsdroid
// @version 0.2.2
// @description delete qrcode tips
// @author zsdroid
// @match https://xui.ptlogin2.qq.com/*
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
var qr_tips = document.getElementById("qr_tips");
if(qr_tips)
{
qr_tips.parentNode.removeChild(qr_tips);
}
})();