Greasy Fork is available in English.
remove baidu-translate desktop ad / 移除百度翻译桌面版广告
// ==UserScript== // @name Remove baidu-translate desktop ad / 移除百度翻译桌面版/APP广告 // @namespace http://tampermonkey.net/ // @version 0.2 // @description remove baidu-translate desktop ad / 移除百度翻译桌面版广告 // @author TheBeacon // @match https://fanyi.baidu.com/* // @icon https://www.google.com/s2/favicons?domain=baidu.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var test = document.getElementsByClassName("desktop-guide")[0]; test.classList.add("desktop-guide-hide"); })();