Skip to content

Instantly share code, notes, and snippets.

@agerard57
Forked from egordm/songsterr_premium.js
Created July 8, 2024 07:46
Show Gist options
  • Save agerard57/9189a6f4feae912df93fb67044c73355 to your computer and use it in GitHub Desktop.
Save agerard57/9189a6f4feae912df93fb67044c73355 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');
});
})();
@popajopa21
Copy link

why doesn't he work in microsoft edge?

@VFluger
Copy link

VFluger commented Mar 2, 2025

Doesn't work at all

@SEAN-EE
Copy link

SEAN-EE commented Apr 9, 2025

Can confirm works 100%

@LakeAcross
Copy link

Unfortunately it doesn't work no more

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment