Greasy Fork

来自缓存

关闭右下角与网页对话框

2023/11/21 15:46:10

目前为 2023-11-23 提交的版本。查看 最新版本

// ==UserScript==
// @name        关闭右下角与网页对话框
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      -
// @description 2023/11/21 15:46:10
// ==/UserScript==


setTimeout(close_window, 5000);

function close_window(){
  box = document.querySelector("#web-cat-message");
  box.style.display = 'none';
}