通义千问去除对话框

去除 通义千问的对话框 ,从而避免了页面被遮挡

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址