Skip to content

Instantly share code, notes, and snippets.

@FonzTech
Last active November 6, 2023 00:00
Show Gist options
  • Save FonzTech/a68148b95acc7247c9a944b73777ca4c to your computer and use it in GitHub Desktop.
Save FonzTech/a68148b95acc7247c9a944b73777ca4c to your computer and use it in GitHub Desktop.
Disable bottom banner on Songsterr - TamperMonkey
// ==UserScript==
// @name Disable bottom banner on Songsterr
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Disable bottom banner on Songsterr
// @author You, credit: https://stackoverflow.com/users/3710743/fonztech
// @match https://www.songsterr.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const m = document.getElementById("showroom");
if (m !== null) {
m.style.setProperty('display', 'none', 'important');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment