Games instead of discover!
// ==UserScript==
// @name Old text for games title
// @namespace http://tampermonkey.net/
// @version 1.4
// @description Games instead of discover!
// @author You
// @match https://web.roblox.com/discover
// @match https://web.roblox.com/discover/?Keyword=
// @icon https://www.google.com/s2/favicons?sz=64&domain=roblox.com
// @license none
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.title = "Games - Roblox";
})();