Spotify Cleaner

This script removes the buttons next to the avatar on Spotify Web.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name          Spotify Cleaner
// @namespace     http://tampermonkey.net/
// @version       1.8.7
// @description   This script removes the buttons next to the avatar on Spotify Web.
// @author       dacyh
// @match        *://open.spotify.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=spotify.com
// @grant         none
// @run-at       document-start
// ==/UserScript==

(function() {
let css = `

/*hide free users upgrade to premium button 1*/
    .ButtonInner-sc-14ud5tc-0.fcsOIN.encore-inverted-light-set {
        display: none;
    }

/*hide free users download app button*/
    .ButtonInner-sc-14ud5tc-0.gDlqhe.encore-over-media-set {
        display: none;
    }

/*hide premium users download app button*/
    .ButtonInner-sc-14ud5tc-0.kVKSMm {
        display: none;
    }
/*blue box*/
    .tippy-content {
        display: none;
    }
/*blue box*/
    .tippy-box {
        display: none;
    }
/*blue box*/
    .y9bkifFKNExwjaoINLm9 {
        display: none;
    }
/*artist panel*/
    .GTmlByXpJj7V6AwVq0Vk.ouorHKa6NI5cm666H3tp {
        display: none;
    }
/*also artist panel*/
    .QkOkUShDYWFx5Cz40Bcn {
        display: none;
    }
/*tour panel*/
    .IgTMXVbZtqtZwu3GZASd {
        display: none;
    }
/*extra*/
    mWj8N7D_OlsbDgtQx5GW.ig17e2GN63Tgv3JeRoJF {
        display: none;
    }

`;
if (typeof GM_addStyle !== "undefined") {
  GM_addStyle(css);
} else {
  let styleNode = document.createElement("style");
  styleNode.appendChild(document.createTextNode(css));
  (document.querySelector("head") || document.documentElement).appendChild(styleNode);
}
})();