Created
September 4, 2017 13:47
-
-
Save seiyria/e9ce7d959657b6be88d84bc2cc9e7d52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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