Greasy Fork

Greasy Fork is available in English.

有道云笔记无广告

适用于: ✅有道云笔记网页版https://note.youdao.com/

目前为 2025-02-20 提交的版本,查看 最新版本

// ==UserScript==
// @name 有道云笔记无广告
// @version 20250220
// @author Moshow郑锴
// @homepage https://zhengkai.blog.csdn.net/
// @namespace noteyoudaonoad
// @license MIT
// @description 适用于: ✅有道云笔记网页版https://note.youdao.com/

// @include *://note.youdao.com/web/*
// ==/UserScript==

// 删除所有匹配选择器的 ad-component 元素
// by https://zhengkai.blog.csdn.net/
document.querySelectorAll('#flexible-list-left > div:nth-child(2) > div > ad-component').forEach(function(element) {
    element.remove();
});


// 查找匹配选择器的元素并移除 adListTag class
// by https://zhengkai.blog.csdn.net/
document.querySelectorAll('#file-outer').forEach(function(element) {
    element.classList.remove('adListTag');
});