Remove header and footer to FastPokeMap
目前為
// ==UserScript==
// @name FastPokeMap cleaner
// @description Remove header and footer to FastPokeMap
// @namespace FPMHide
// @include *://fastpokemap.se/*
// @version 1
// @grant none
// ==/UserScript==
// http://www.geekatori.com
(function () {
'use strict';
document.querySelector('.adroom').style.display = 'none';
document.querySelector('.desktop-header').style.display = 'none';
document.getElementById('map').style.height = '100vh';
}) ();