Spotify Silent Ads

Mute audio when Spotify ads are detected

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Spotify Silent Ads
// @name:zh-CN   Spotify 静音广告
// @namespace    https://greasyfork.org/users/166541
// @version      0.0.3
// @description  Mute audio when Spotify ads are detected
// @description:zh-cn 当检测到 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 muted = false;

const observer = new MutationObserver(() => {
    if (document.title.includes("Spotify – 广告") || muted) {
        document.querySelector('[data-testid="volume-bar-toggle-mute-button"]').click();
        muted = !muted
        if (muted) {
            console.log(document.title, "静音")
        }
    }
});

observer.observe(document.querySelector('title'), { childList: true });