Skip to content

Instantly share code, notes, and snippets.

@seiyria
Created September 4, 2017 13:47
Show Gist options
  • Save seiyria/e9ce7d959657b6be88d84bc2cc9e7d52 to your computer and use it in GitHub Desktop.
Save seiyria/e9ce7d959657b6be88d84bc2cc9e7d52 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name get rid of that instant mix and shuffle shit
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author seiyria
// @match https://play.google.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
window.fuckThisShit = function() {
console.log('init fuckGooglePlay InstantMix and Whatever');
var startRadio = document.getElementById(':3');
var shuffle = document.getElementById(':4');
startRadio.remove();
shuffle.remove();
};
setTimeout(window.fuckThisShit, 5000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment