您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name 去掉网易云笔记广告 // @name:zh-CN 去掉网易云笔记广告 // @description:zh-cn 去掉网易云笔记广告 // @namespace https://github.com/hikerwu/chrometp // @version 0.0.3 // @description try to take over the world! // @author hikerwu // @match https://note.youdao.com/web/* // @require http://code.jquery.com/jquery-latest.js // @grant none // ==/UserScript== // 1.去掉左下角的网易云笔记广告。 // 2.将广告位置空间合理利用。 // 3.通过事件捕获避免闪烁. function closeAd() { $(".sidebar-ft").css("display","none"); $(".sidebar-content").css("bottom","-40px"); } (function() { 'use strict'; // 通过事件捕获来避免广告闪烁; document.addEventListener("DOMSubtreeModified", function (event) { $(event.target).find(".widget-scroller-wrap").show(function(){ closeAd(); }); }); })();