// ==UserScript== // @name 有道云笔记隐藏蓝色标题栏 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 隐藏蓝色 header // @author You // @match https://note.youdao.com/web/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function () { window.setTimeout(e => { let target = document.querySelector('.main-container') let top = document.querySelector('.top-banner') top.style.zIndex = 0 target.style.top = 0 target.style.translation = 'all 0.5s' }, 100) })();