Facebook Livemap Zoom+

Facebook Livemap Increase zoom level

  1. // ==UserScript==
  2. // @name Facebook Livemap Zoom+
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Facebook Livemap Increase zoom level
  6. // @author mcbyte
  7. // @match https://www.facebook.com/livemap
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. setTimeout(function(){
  15. L.Map.prototype.getMaxZoom=function(){return 15;};
  16. }, 3000);
  17. })();