Greasy Fork is available in English.
隐藏有道在线翻译网页开屏广告
// ==UserScript==
// @name 隐藏有道翻译开屏广告
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 隐藏有道在线翻译网页开屏广告
// @author Cynhard_yuyu
// @match https://fanyi.youdao.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector(".dict-download-guide").style.display="none";
// Your code here...
})();