Greasy Fork is available in English.
为常用网站添加功能定制。例如:3DMGame、贴吧、淘宝、京东、GitHub...
< Відгуки до Tiny-Customize
能不能加入我这段去除虾米二维码登录的代码 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")); }); }
已经加上了,应该可以了!
感谢,可以了
Sign in to post a reply.
能不能加入我这段去除虾米二维码登录的代码
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"));
});
}