FastPokeMap cleaner

Remove header and footer to FastPokeMap

目前为 2016-09-24 提交的版本,查看 最新版本

// ==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';
}) ();