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
// @version     1.2.5
// @author      Thibb1
// @description Unlock all premium features on Songsterr
// @license     GPL
// ==/UserScript==

(function () {
    'use strict';
    const a = document.body.querySelector('#state');
    a.textContent = a.textContent.replace('hasPlus":false', 'hasPlus":true');
    window.addEventListener('load', () => {
        const b = document.querySelector('#showroom') ?? document.querySelector('#showroom_header');
        b?.removeAttribute('id');
        b?.removeAttribute('class');
    });
})();