Skip to content

Instantly share code, notes, and snippets.

@rummik
Last active December 7, 2016 08:49
Show Gist options
  • Save rummik/60b6c136862ad9596928 to your computer and use it in GitHub Desktop.
Save rummik/60b6c136862ad9596928 to your computer and use it in GitHub Desktop.
Fix those annoying flashing tabs when the song changes.
// ==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