spotify 静音广告。
当前为
// ==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, "静音")
}
}
}
});