Skip to content

Instantly share code, notes, and snippets.

@egordm
Last active October 20, 2025 17:54
Show Gist options
  • Select an option

  • Save egordm/8a1d558213942c104235d16dff7b3558 to your computer and use it in GitHub Desktop.

Select an option

Save egordm/8a1d558213942c104235d16dff7b3558 to your computer and use it in GitHub Desktop.
Enable Songsterr Premium
// ==UserScript==
// @name Enable Songsterr Premium
// @version 0.1
// @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';
// Find all the objects that have user property and set hasPlus key in user to true. Simple as that
Object.values(window).filter((el) => el instanceof Object && el.hasOwnProperty('user')).map((el) => el.user.hasPlus=true);
})();
@5erburn1
Copy link

5erburn1 commented Sep 8, 2025

hi all does this still work, or am i doing something wrong?

nope, still waiting till OP give us something

@KitaHare
Copy link

Ohno it doesn‘t work now.

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