Last active
December 7, 2016 08:49
-
-
Save rummik/60b6c136862ad9596928 to your computer and use it in GitHub Desktop.
Fix those annoying flashing tabs when the song changes.
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 Google Play Music Dehighlight | |
// @namespace http://www.rummik.com/ | |
// @version 1.0 | |
// @description Disable tab highlights in Google Play Music on Chrome due to title change | |
// @author rummik | |
// @match https://play.google.com/music/listen* | |
// ==/UserScript== | |
Object.defineProperty(document, 'title', { | |
enumerable: false, | |
configurable: false, | |
writable: false, | |
value: 'Google Play Music' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment