Greasy Fork is available in English.
delete qrcode tip
当前为
// ==UserScript==
// @name 去除qq登录扫码提示
// @namespace zsdroid
// @version 0.1
// @description delete qrcode tip
// @author zsdroid
// @match https://*/*
// @match http://*/*
// @include /^https?:\/\/xui\.ptlogin2\.qq\.com\//
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
var qr_tips_pic = document.getElementById('qr_tips_pic');
var qr_tips_menban = document.getElementById('qr_tips_menban');
if(qr_tips_pic && qr_tips_menban)
{
qr_tips_pic.style.display="none";
qr_tips_menban.style.display="none";
}
})();