您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide podcasts from homepage
// ==UserScript== // @name Hide Podcast Recommendations // @author Ajay Ramachandran // @description Hide podcasts from homepage // @license MIT // @esversion 6 // @version 1.0.1 // @namespace app.ajay.spotify.podcast // @include https://open.spotify.com/* // ==/UserScript== /// <reference path="../globals.d.ts" /> (function HidePodcasts() { setTimeout(() => { const mainView = document.getElementsByClassName("Root__main-view")[0]; const observer = new MutationObserver(() => { const elements = document.querySelectorAll(`a[href*="/episode/"], a[href*="/show/"]`); for (const element of elements) { let parent = element.parentElement; while (!parent || parent.tagName !== "SECTION") { parent = parent.parentElement; } parent.style.display = "none"; } }); observer.observe(mainView, { attributes: true, childList: true, subtree: true }); }, 7000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址