// ==UserScript== // @name 有道翻译-禁用页面AI选项 // @namespace http://tampermonkey.net/ // @version 2023-12-21 // @description i am XiaoMao! // @author XiaoMao // @match https://fanyi.youdao.com/index* // @icon https://www.google.com/s2/favicons?sz=64&domain=youdao.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; againF() function againF() { setTimeout(()=>{ if(document.readyState != 'complete'){ againF() }else{ let DropElement = document.getElementsByClassName('color_text_3') for(let i = 0;i < DropElement.length;i++){ if(i != 1){ DropElement[i].style['pointer-events']= 'none' } } } },500) } })();