Songsterr Premium - songsterr.com

Unlock all premium features on Songsterr

// ==UserScript==
// @name        Songsterr Premium - songsterr.com
// @namespace   https://github.com/Thibb1
// @match       https://songsterr.com/*
// @match       https://www.songsterr.com/*
// @grant       none
// @run-at      document-start
// @version     1.3.2
// @author      Thibb1
// @description Unlock all premium features on Songsterr
// @license     GPL
// ==/UserScript==

(function() {
  'use strict';
  let a;
  Object.defineProperty(Object.prototype, btoa("ªç«È*'µéí"), {
    get() { return a; },
    set(v) {
      if (this.user) {
        this.user.hasPlus = true;
        if (this.user.profile) this.user.profile.plan = "plus";
      }
      a = v;
    }
  });
  window.addEventListener('load', () => {
    const b = document.querySelector('#showroom') ?? document.querySelector('#showroom_header');
    b?.removeAttribute('id');
    b?.removeAttribute('class');
  });
})();