Skip to content

Instantly share code, notes, and snippets.

@TheDarkTron
Created November 3, 2021 07:37
Show Gist options
  • Save TheDarkTron/0d4f4fb2368fa0a5d583227839014e9c to your computer and use it in GitHub Desktop.
Save TheDarkTron/0d4f4fb2368fa0a5d583227839014e9c to your computer and use it in GitHub Desktop.
RM Center Songs userscript
// ==UserScript==
// @name RM Center Songs
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Center the song and show panels on RM.FM
// @author TheDarkTron
// @match https://www.rm.fm/*/feed
// @icon https://www.google.com/s2/favicons?domain=rm.fm
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
GM_addStyle ( `
rm-track > div {
left: 25%;
width: 330px;
position: relative;
}
rm-show > div {
left: 25%;
width: 330px;
position: relative;
}
` );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment