Last active
June 27, 2022 05:12
-
-
Save Luckz/46dde3e109ab81de5d4852cb3a566c99 to your computer and use it in GitHub Desktop.
Steam Chat Title Change Disabler (.user.js)
This file contains 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 Steam Chat Title Change Disabler | |
// @namespace luckz | |
// @author luckz | |
// @version 0.1 | |
// @description Stop the fucking title from changing every fucking μs. | |
// @match https://steamcommunity.com/chat/ | |
// @grant none | |
// @downloadURL https://gist.github.com/Luckz/46dde3e109ab81de5d4852cb3a566c99/raw/SteamChatTitleChangeDisabler.user.js | |
// @updateURL https://gist.github.com/Luckz/46dde3e109ab81de5d4852cb3a566c99/raw/SteamChatTitleChangeDisabler.user.js | |
// ==/UserScript== | |
window.document.title = "Steam Chat" | |
Object.defineProperty(window.document, 'title', { | |
set: function(){} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment