pkgetBigMap

Bigger map for pkget.com & remove ads.

  1. // ==UserScript==
  2. // @name pkgetBigMap
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Bigger map for pkget.com & remove ads.
  6. // @author SSARCandy
  7. // @match https://pkget.com/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. $('body > section.text-wrap').remove();
  14. $('#map').css('height', '90vh');
  15. window.dispatchEvent(new Event('resize'));
  16. })();