Skip to content

Instantly share code, notes, and snippets.

@Luckz
Last active June 27, 2022 05:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Luckz/46dde3e109ab81de5d4852cb3a566c99 to your computer and use it in GitHub Desktop.
Save Luckz/46dde3e109ab81de5d4852cb3a566c99 to your computer and use it in GitHub Desktop.
Steam Chat Title Change Disabler (.user.js)
// ==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