Skip to content

Instantly share code, notes, and snippets.

@LakeAcross
Forked from agerard57/songsterr_premium.js
Created April 30, 2025 12:54
Show Gist options
  • Save LakeAcross/f499da1a2c6b12e78d5e194ac4cdf0bd to your computer and use it in GitHub Desktop.
Save LakeAcross/f499da1a2c6b12e78d5e194ac4cdf0bd to your computer and use it in GitHub Desktop.
Enable Songsterr Premium
// ==UserScript==
// @name Enable Songsterr Premium
// @version 0.2
// @description Enable songsterr premium
// @author EgorDm
// @grant none
// @include *songsterr.com*
// @include songsterr.com*
// @include *songsterr.com
// @include songsterr.com
// @include www.songsterr.com*
// @include http://songsterr.com/*
// @include http://*.songsterr.com/*
// ==/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.body.querySelector(navigator.userAgentData.mobile ? '#showroom_header' : '#showroom');
b?.removeAttribute('id');
b?.removeAttribute('class');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment