Greasy Fork is available in English.
删除登录框元素
当前为
// ==UserScript==
// @name 堆糖删除登录提示
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 删除登录框元素
// @author Leon
// @license Copyright © 2025 Leon. All rights reserved.
// @match https://www.duitang.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=duitang.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
setInterval(function(){
let a = document.getElementsByClassName('blockUI');
if(a) {
for(let i=0; i<a.length; i++) {
a[i].remove();
}
}
}, 700);
})();