NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Jogos360 Real Fullscreen // @namespace http://tampermonkey.net/ // @version 0.1 // @description Makes the Jogos360 fullscreen button launch a REAL fullscreen window // @author VitorMM // @match http://www.jogos360.com.br/*?fullscreen=true // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var header = document.getElementById("header"); header.style.display = "none"; var jogo = document.getElementById("jogo"); jogo.style.height = "100%"; jogo.style.position = "fixed"; })();