您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去掉左下角广告,拉高文件夹显示列表
// ==UserScript== // @name 去网页版有道云广告 // @namespace 有道云笔记 // @version 0.1 // @description 去掉左下角广告,拉高文件夹显示列表 // @author Simet.Zeng // @match https://note.youdao.com/*/** // @grant none // ==/UserScript== (function() { 'use strict'; window.onload=function (){ var sidebarFt = document.getElementsByClassName('sidebar-ft')[0]; sidebarFt.parentNode.removeChild(sidebarFt); document.getElementsByClassName('sidebar-content')[0].style.bottom = 0; }; })();