spotify 静音广告

spotify 静音广告。

当前为 2025-01-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         spotify 静音广告
// @namespace    https://greasyfork.org/users/166541
// @version      0.0.1
// @description  spotify 静音广告。
// @author       xmdhs
// @match        https://open.spotify.com/*
// @license      MIT
// @icon         https://www.google.com/s2/favicons?sz=64&domain=open.spotify.com
// ==/UserScript==

let title = document.title;
let muted = false;

Object.defineProperty(document, 'title', {
    get() {
        return title;
    },
    set(newTitle) {
        const muteButton = document.querySelector('[data-testid="volume-bar-toggle-mute-button"]');
        if (newTitle.includes("Spotify – 广告") || muted) {
            muteButton.click();
            muted = !muted
            if (muted) {
                console.log(newTitle, "静音")
            }
        }
    }
});