Tiny-Customize

为常用网站添加功能定制。例如:3DMGame、贴吧、淘宝、京东、GitHub...

< Feedback on Tiny-Customize

Question/comment

§
Posted: 2017-09-05
Edited: 2017-09-05

能不能加入我这段去除虾米二维码登录的代码

else if (host === "login.xiami.com")
{
// 虾米。

// 默认显示密码登录(而非 QR 码登录)界面。
actions.push(() =>
{
// 删除扫码登录。
let elems = document.querySelectorAll(`.login-qrcode, .login-switch`);
elems.forEach(e => e.remove());

// 始终显示密码登录。
elems = document.querySelectorAll(`.login-xm`);
elems.forEach(e => e.setAttribute("style", "display: block !important"));

});
}

nonoroazoroAuthor
§
Posted: 2017-09-06

已经加上了,应该可以了!

§
Posted: 2017-09-08

感谢,可以了

Post reply

Sign in to post a reply.