文小言检测是否有删除确认键1
// ==UserScript==
// @name 文小言检测是否有删除确认键
// @description 文小言检测是否有删除确认键1
// @match https://yiyan.baidu.com/
// @license GPL-3.0 License
// @version 0.0.1.20240923084800
// @namespace https://greasyfork.org/users/1256247
// ==/UserScript==
(function () {
'use strict';
window.onload = function () {
setInterval(function() {
let cc = document.querySelector(".WOyOqERf");
if (!!cc) {
cc.click()
}
},1500)
}
})();