去除 通义千问的对话框 ,从而避免了页面被遮挡
// ==UserScript==
// @name 通义千问去除对话框
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description 去除 通义千问的对话框 ,从而避免了页面被遮挡
// @author 古咩.
// @match *://tongyi.aliyun.com/*
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// 获取页面上的对话栏元素
const dialogBar = document.querySelector('.side--L0W1WdHl');
// 如果找到该元素,则隐藏它
if (dialogBar) {
dialogBar.style.display = 'none';
}
})();